:root {
    /* Couleurs du logo RANDOM */
    --primary: #0B3D91;          /* Bleu royal du logo */
    --primary-dark: #082a66;     /* Bleu foncé */
    --primary-light: #1a56b8;    /* Bleu clair */
    --secondary: #E31B23;        /* Rouge vif du logo */
    --secondary-dark: #b8151b;   /* Rouge foncé */
    --accent: #2ECC71;           /* Vert du logo */
    --accent-light: #58d68d;     /* Vert clair */
    --text: #1a1a2e;
    --text-light: #6b7280;
    --bg: #f8fafc;
    --bg-alt: #ffffff;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --card-shadow: 0 25px 50px -12px rgba(11, 61, 145, 0.1);
    --glow: 0 0 40px rgba(11, 61, 145, 0.15);
}

.dark {
    --primary: #1a56b8;
    --primary-dark: #0B3D91;
    --primary-light: #3b7dd8;
    --text: #f1f5f9;
    --text-light: #94a3b8;
    --bg: #0d1422;
    --bg-alt: #152238;
    --card-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    height: 80px;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    max-height: 44px;
}

.top-bar.hidden {
    max-height: 0;
    border-bottom-color: transparent;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.55rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

.top-bar-left a,
.top-bar-left span {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: var(--accent);
}

.top-bar-left i {
    font-size: 0.75rem;
    color: var(--accent);
}

.top-bar-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 0.4rem;
}

.top-bar-right {
    display: flex;
    gap: 0.3rem;
}

.top-bar-right a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s;
    font-size: 0.8rem;
    text-decoration:none;
}

.top-bar-right a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
header {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.6rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

header.scrolled {
    top: 0;
    padding: 0.35rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    flex-shrink: 0;
}

.logo {
    height: 52px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

header.scrolled .logo {
    height: 42px;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    gap: 0.15rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.92rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--accent), #ffd700);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.nav-links a:hover::after {
    width: 55%;
}

.nav-links a.nav-active {
    color: white;
}

.nav-links a.nav-active::after {
    width: 55%;
}

/* Dropdown arrow */
.dropdown-arrow {
    font-size: 0.6rem !important;
    transition: transform 0.3s;
    margin-left: 0.15rem;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ============================================
   MEGA DROPDOWN
   ============================================ */
.nav-links .dropdown {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(12, 24, 48, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    width: 50em;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.2rem;
    pointer-events: none;
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: rgba(12, 24, 48, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px 0 0 0;
}

/* Invisible bridge so hover doesn't break */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
}

.dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.mega-item::after {
    display: none !important;
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.mega-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.mega-item:hover .mega-item-icon {
    transform: scale(1.08);
}

.mega-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mega-item-text strong {
    font-size: 0.92rem;
    font-weight: 600;
    color: white;
}

.mega-item-text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.mega-dropdown-footer {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-dropdown-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem;
    border-radius: 12px;
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s;
    background: rgba(46, 204, 113, 0.08);
}

.mega-dropdown-footer a::after {
    display: none !important;
}

.mega-dropdown-footer a:hover {
    background: rgba(46, 204, 113, 0.15) !important;
}

/* ============================================
   NAV RIGHT (CTA)
   ============================================ */
.nav-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff6b35 100%);
    color: white !important;
    padding: 0.7rem 1.6rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(227, 27, 35, 0.35);
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta::after {
    display: none !important;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(227, 27, 35, 0.45);
}

.btn-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-cta:hover i {
    transform: translateX(3px);
}

/* ============================================
   HAMBURGER TOGGLE (MOBILE)
   ============================================ */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    z-index: 1001;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: white;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE NAVIGATION PANEL
   ============================================ */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
}

.mobile-nav.open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-nav.open .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    max-width: 88vw;
    height: 100%;
    background: var(--bg-alt);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.dark .mobile-nav-panel {
    background: var(--bg-alt);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open .mobile-nav-panel {
    transform: translateX(0);
}

/* Mobile nav header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dark .mobile-nav-header {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.mobile-nav-logo {
    height: 40px;
}

.mobile-nav-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.dark .mobile-nav-close {
    border-color: rgba(255, 255, 255, 0.08);
}

.mobile-nav-close:hover {
    background: rgba(227, 27, 35, 0.08);
    color: var(--secondary);
    border-color: rgba(227, 27, 35, 0.2);
}

/* Mobile nav body */
.mobile-nav-body {
    flex: 1;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.98rem;
    transition: all 0.25s;
    border: 1px solid transparent;
    background: transparent;
    width: 100%;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-align: left;
}

.mobile-nav-link:hover {
    background: rgba(11, 61, 145, 0.04);
    border-color: rgba(11, 61, 145, 0.08);
}

.mobile-nav-link.active {
    background: rgba(11, 61, 145, 0.06);
    border-color: rgba(11, 61, 145, 0.12);
    color: var(--primary);
}

.mobile-nav-link.active .mobile-nav-link-icon {
    background: var(--primary);
    color: white;
}

.mobile-nav-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(11, 61, 145, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.25s;
}

.dark .mobile-nav-link-icon {
    background: rgba(255, 255, 255, 0.06);
}

.mobile-nav-link span {
    flex: 1;
}

.mobile-nav-arrow {
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.4;
    transition: all 0.25s;
}

.mobile-nav-link:hover .mobile-nav-arrow {
    opacity: 0.7;
    transform: translateX(3px);
}

/* Mobile accordion */
.mobile-nav-accordion-trigger {
    position: relative;
}

.mobile-nav-accordion-icon {
    font-size: 0.65rem;
    color: var(--text-light);
    transition: transform 0.3s;
}

.mobile-nav-accordion.open .mobile-nav-accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.mobile-nav-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 0.5rem;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 1rem 0.7rem 3.2rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    margin-top: 0.2rem;
}

.mobile-sub-link:hover {
    background: rgba(11, 61, 145, 0.05);
    color: var(--primary);
}

.mobile-sub-link i {
    width: 18px;
    text-align: center;
    color: var(--primary);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Mobile nav footer */
.mobile-nav-footer {
    padding: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.dark .mobile-nav-footer {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.9rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ff6b35 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(227, 27, 35, 0.3);
}

.mobile-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.4);
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1rem;
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav-contact a:hover {
    color: var(--primary);
}

.mobile-nav-contact i {
    width: 16px;
    text-align: center;
    color: var(--accent);
    font-size: 0.78rem;
}

.mobile-nav-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.mobile-nav-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 61, 145, 0.06);
    color: var(--primary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(11, 61, 145, 0.08);
}

.dark .mobile-nav-social a {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
}

.mobile-nav-social a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: #060e1a;
}

.carousel {
    position: absolute;
    inset: 0;
}

/* --- Slides --- */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Ken Burns zoom + subtle pan */
.slide-bg {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: scale(1.08);
    transition: transform 0s;
}

.slide.active .slide-bg {
    animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
    0%   { transform: scale(1.08) translate(0, 0); }
    100% { transform: scale(1) translate(-0.5%, -0.3%); }
}

/* Overlay gradient */
.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(6, 14, 26, 0.92) 0%, rgba(6, 14, 26, 0.7) 45%, rgba(11, 61, 145, 0.25) 100%),
        linear-gradient(to top, rgba(6, 14, 26, 0.6) 0%, transparent 40%);
}

.slide-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(46, 204, 113, 0.08) 0%, transparent 50%);
}

/* --- Per-slide content --- */
.slide-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-top: 100px; /* espace pour header desktop (top-bar 44px + nav ~56px) */
    padding-bottom: 100px; /* espace pour stats bar */
}

.slide-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Staggered text animations */
.slide .hero-label,
.slide h1,
.slide .hero-text,
.slide .hero-buttons {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .hero-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.slide.active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.slide.active .hero-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

.slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
}

/* Label */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid rgba(46, 204, 113, 0.25);
    margin-bottom: 1.8rem;
}

.hero-label i {
    font-size: 0.8rem;
}

/* Title */
.hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    color: white;
    margin-bottom: 1.3rem;
    line-height: 1.08;
    max-width: 780px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-text {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.2rem;
    max-width: 580px;
    line-height: 1.75;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(227, 27, 35, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(227, 27, 35, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-3px);
}

/* ============================================
   CAROUSEL PROGRESS BAR
   ============================================ */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 40;
}

.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #ffd700);
    border-radius: 0 4px 4px 0;
    transition: width 0.1s linear;
}

/* ============================================
   SLIDE COUNTER  01 / 03
   ============================================ */
.carousel-counter {
    position: absolute;
    left: 2rem;
    bottom: 8rem;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    font-family: 'Cormorant Garamond', serif;
}

.carousel-counter-current {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
}

.carousel-counter-sep {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.carousel-counter-total {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.5;
}

/* ============================================
   STATS BAR
   ============================================ */
.hero-stats {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem 0;
    z-index: 20;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    opacity: 0.7;
    margin-top: 0.4rem;
}

/* ============================================
   CAROUSEL CONTROLS
   ============================================ */
.carousel-nav {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 30;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    padding: 0;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.4);
}

.carousel-dot.active::before {
    border-color: rgba(46, 204, 113, 0.3);
}

.carousel-arrows {
    position: absolute;
    right: 2.5rem;
    bottom: 8rem;
    display: flex;
    gap: 0.75rem;
    z-index: 30;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s;
    font-size: 1rem;
}

.carousel-arrow:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 7rem 2rem;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(212, 56, 13, 0.1), rgba(240, 193, 75, 0.1));
    color: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(212, 56, 13, 0.2);
}

.dark .section-tag {
    background: linear-gradient(135deg, rgba(212, 56, 13, 0.2), rgba(240, 193, 75, 0.15));
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg);
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-img {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
}

.about-img:first-child {
    grid-row: span 2;
    height: 100%;
}

.about-img-inner {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.about-img:first-child .about-img-inner {
    min-height: 430px;
}

.about-img:hover .about-img-inner {
    transform: scale(1.08);
}

.about-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: linear-gradient(135deg, var(--secondary), #ff6b35);
    color: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(212, 56, 13, 0.4);
    z-index: 10;
}

.about-badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.about-content {
    padding-right: 2rem;
}

.about-content .section-tag {
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.about-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-alt);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
}

.dark .about-feature {
    border-color: rgba(255, 255, 255, 0.05);
}

.about-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--card-shadow);
    border-color: rgba(212, 56, 13, 0.2);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 600;
    color: var(--text);
}

/* Trust Section */
.trust {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trust::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(240, 193, 75, 0.08) 0%, transparent 60%);
}

.trust-wrapper {
    position: relative;
    z-index: 1;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.trust-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-header p {
    opacity: 0.8;
    font-size: 1.15rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
    color: white;
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(240, 193, 75, 0.3);
}

.trust-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(240, 193, 75, 0.2), rgba(240, 193, 75, 0.05));
    border: 1px solid rgba(240, 193, 75, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2.2rem;
    color: var(--accent);
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.trust-card p {
    opacity: 0.85;
    font-size: 1.05rem;
    line-height: 1.7;
}

.trust-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.trust-card a:hover {
    text-decoration: underline;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-alt);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.dark .service-card {
    border-color: rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.dark .service-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--accent);
    transition: all 0.5s;
    position: relative;
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 32px;
    border: 2px dashed rgba(240, 193, 75, 0.3);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.service-card:hover .service-icon-wrapper {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary), #ff6b35);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover {
    color: var(--primary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Newsletter */
.newsletter {
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 56, 13, 0.05) 0%, transparent 60%);
}

.newsletter-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.newsletter p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
    background: var(--bg);
    padding: 0.6rem;
    border-radius: 60px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.dark .newsletter-form {
    border-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary), #ff6b35);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 56, 13, 0.4);
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 6rem 2rem 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 193, 75, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    opacity: 0.75;
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent);
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 0.3rem;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--accent);
    font-size: 1.3rem;
}

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

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

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .about-badge {
        right: 2rem;
    }

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

    .carousel-nav {
        right: 1.5rem;
    }

    .carousel-arrows {
        right: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE - DESKTOP (>=769px)
   ============================================ */
@media (min-width: 769px) {
    #desktopNavLinks {
        display: flex !important;
    }

    #navRight {
        display: flex !important;
    }

    .mobile-toggle {
        display: none !important;
    }

    .mobile-nav {
        display: none !important;
    }
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE (<=768px)
   ============================================ */
@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    header {
        top: 0;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    }

    /* Show hamburger */
    .mobile-toggle {
        display: flex !important;
    }

    /* Hide desktop nav */
    #desktopNavLinks {
        display: none !important;
    }

    #navRight {
        display: none !important;
    }

    /* --- Hero Carousel Mobile --- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .slide-content {
        padding-top: 75px;  /* hauteur navbar mobile */
        padding-bottom: 70px; /* espace pour compteur + fleches */
        align-items: center;
    }

    .slide-inner {
        padding: 0 1.2rem;
    }

    .hero-label {
        font-size: 0.78rem;
        padding: 0.45rem 1rem;
        margin-bottom: 1.2rem;
        gap: 0.5rem;
    }

    .hero-label i {
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7.5vw, 2.8rem);
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 1.6rem;
        line-height: 1.65;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 0.7rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .hero-stats {
        display: none;
    }

    /* Controles carousel mobile */
    .carousel-arrows {
        right: 1.2rem;
        bottom: 1.2rem;
        gap: 0.5rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        font-size: 0.85rem;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-counter {
        left: 1.2rem;
        bottom: 1.2rem;
    }

    .carousel-counter-current {
        font-size: 1.8rem;
    }

    .carousel-counter-total {
        font-size: 1rem;
    }

    .carousel-counter-sep {
        width: 18px;
    }

    /* --- Reste du layout mobile --- */
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 1rem;
    }

    .newsletter-form button {
        width: 100%;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
    }

    .about-img:first-child {
        grid-row: auto;
    }

    .about-img:first-child .about-img-inner {
        min-height: 300px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .mobile-nav-panel {
        width: 100%;
        max-width: 100vw;
    }
}



