/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}
.lang-toggle:hover {
    background: var(--primary);
    color: var(--white);
}
.header.scrolled .lang-toggle {
    border-color: var(--primary);
    color: var(--primary);
}
.header.scrolled .lang-toggle:hover {
    background: var(--primary);
    color: var(--white);
}
@media (max-width: 768px) {
    .lang-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        background: var(--primary);
        color: var(--white);
        border: none;
        padding: 10px 18px;
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
        font-size: 14px;
    }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B00;
    --primary-dark: #E55D00;
    --primary-light: #FFF4EC;
    --dark: #1A1A1A;
    --gray-900: #212121;
    --gray-700: #616161;
    --gray-500: #9E9E9E;
    --gray-300: #E0E0E0;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    --success: #4CAF50;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* ===== BOLD TYPOGRAPHY (YANGO STYLE) ===== */
.hero-title-bold {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 140px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-content-left .hero-title-bold {
    text-align: left;
}

.section-title-bold {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.text-highlight {
    color: var(--dark);
}

.text-dark {
    color: var(--dark);
}

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

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: var(--white);
}

.logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    letter-spacing: 0.5px;
}

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

.btn-driver-nav {
    background: transparent;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
}

.btn-driver-nav:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-download {
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-download:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO FULL WIDTH ===== */
.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.hero-content-full {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero-content-left {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 120px 60px 80px;
    max-width: 700px;
    margin-right: auto;
}

.hero-subtitle-full {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-subtitle-full strong {
    color: var(--primary);
    font-weight: 600;
}

/* ===== SECTIONS FULL BACKGROUND ===== */
.section-fullbg {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* Position spécifique pour chaque image */
.section-bg-businessman img {
    object-position: left 35%;
}

.section-bg-woman img {
    object-position: right 20%;
}

.section-bg-friends img {
    object-position: center 25%;
}

.driver-hero-bg {
    left: auto;
    right: 0;
    width: 60%;
}

.driver-hero-bg img {
    object-fit: contain;
    object-position: right center;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.section-overlay-right {
    background: linear-gradient(270deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.section-content-left {
    position: relative;
    z-index: 3;
    padding: 80px 60px;
    max-width: 600px;
}

.section-content-right {
    position: relative;
    z-index: 3;
    padding: 80px 60px;
    max-width: 600px;
    margin-left: auto;
    text-align: right;
}

.section-content-right .store-buttons-new {
    justify-content: flex-end;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-700);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.btn-hero {
    padding: 18px 36px;
    font-size: 17px;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
}

.hero-image-container img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.badge-icon {
    font-size: 18px;
}

/* ===== FEATURES BAR ===== */
.features-bar {
    background: var(--gray-100);
    padding: 40px 24px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 28px;
}

.feature-item strong {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
}

.feature-item span {
    font-size: 13px;
    color: var(--gray-700);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.section-desc {
    text-align: center;
    color: var(--gray-700);
    font-size: 18px;
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-700);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 14px;
    color: var(--gray-700);
}

.service-price strong {
    color: var(--primary);
    font-size: 18px;
}

/* ===== MOTO SECTION ===== */
.moto-section {
    background: var(--dark);
    padding: 100px 24px;
}

.driver-section-orange {
    background: var(--primary);
    padding: 100px 24px;
}

.driver-section-orange .moto-text h2,
.driver-section-orange .moto-text p,
.driver-section-orange .moto-benefits li span {
    color: var(--white);
}

.driver-section-orange .moto-benefits svg {
    color: var(--white);
}

.driver-badge-white {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-dark:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
}

.moto-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.moto-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.moto-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.moto-text p {
    color: var(--gray-500);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.moto-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.moto-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    margin-bottom: 16px;
    font-size: 16px;
}

.moto-benefits svg {
    color: var(--success);
    flex-shrink: 0;
}

.btn-moto {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
}

.btn-moto:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.moto-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== COVERAGE SECTION ===== */
.coverage-section {
    padding: 80px 24px;
    text-align: center;
    background: var(--gray-100);
}

.coverage-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.coverage-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.coverage-item {
    background: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

.coverage-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== DRIVER SECTION ===== */
.driver-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.driver-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.driver-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.driver-content > p {
    color: var(--gray-700);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.driver-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.stat-item strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 12px;
    color: var(--gray-700);
}

.btn-driver {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
}

.btn-driver:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
}

.driver-note {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
}

.driver-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-500);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.faq-arrow {
    transition: var(--transition);
    color: var(--gray-500);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
    background: var(--primary);
    padding: 80px 24px;
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-content {
    text-align: center;
}

.download-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.download-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    transition: var(--transition);
}

.store-badge img {
    height: 50px;
    width: auto;
}

.store-badge:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* New Store Buttons */
.store-buttons-new {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark);
    color: var(--white);
    padding: 20px 36px;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.store-btn svg {
    flex-shrink: 0;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-btn-text span {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
}

.store-btn-text strong {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.download-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== SECURITE SECTION ===== */
.securite-section {
    padding: 100px 24px;
    background: var(--gray-100);
    text-align: center;
}

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

.securite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.securite-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.securite-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.securite-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.securite-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.securite-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    padding: 100px 24px;
    background: var(--dark);
    text-align: center;
}

.steps-content {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    max-width: 280px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 1024px) {
    .securite-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
    }
}

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

@media (max-width: 768px) {
    .section-fullbg {
        min-height: 70vh;
    }
    
    .section-content-left,
    .section-content-right {
        padding: 60px 24px;
        max-width: 100%;
        text-align: left;
    }
    
    .section-overlay,
    .section-overlay-right {
        background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    }
}

/* ===== DRIVER PAGE ===== */
.driver-hero.hero-full {
    background: var(--dark);
    padding: 0;
    min-height: 100vh;
}

.driver-hero.hero-full .hero-content-left {
    padding-left: 60px;
}

.driver-hero-content {
    max-width: 700px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.driver-benefits {
    padding: 100px 24px;
    background: #1A1A1A !important;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.6;
}

.driver-steps {
    background: var(--dark);
    padding: 100px 24px;
    text-align: center;
}

.driver-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.driver-step {
    text-align: center;
}

.driver-step .step-number {
    margin-bottom: 20px;
}

.driver-step h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.driver-step p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

.driver-requirements {
    padding: 100px 24px;
    background: var(--white);
}

.requirements-content {
    max-width: 800px;
    margin: 0 auto;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.requirement-item span {
    font-size: 16px;
    color: var(--dark);
}

.driver-form-section {
    background: var(--dark);
    padding: 100px 24px;
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-content .section-title-bold {
    margin-bottom: 16px;
}

.form-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 40px;
}

.driver-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .driver-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .driver-form {
        padding: 30px 20px;
    }
    
    .driver-hero.hero-full {
        padding: 0;
    }
    
    .driver-hero.hero-full .hero-content-left {
        padding-left: 24px;
    }
    
    .driver-hero-bg {
        width: 100%;
        opacity: 0.4;
    }
}

/* ===== TARIFS SECTION ===== */
.tarifs-section {
    padding: 100px 24px;
    background: var(--gray-100);
    text-align: center;
}

.tarifs-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tarifs-desc {
    color: var(--gray-700);
    font-size: 18px;
    margin-bottom: 50px;
}

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

.tarif-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-300);
    transition: var(--transition);
}

.tarif-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tarif-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

.tarif-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.tarif-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.tarif-price {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.tarif-price strong {
    color: var(--primary);
    font-size: 20px;
}

.tarif-card > p:last-child {
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .tarifs-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 24px 30px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column a,
.footer-column span {
    display: block;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-container img {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .moto-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .moto-visual {
        order: -1;
    }
    
    .moto-visual img {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .moto-benefits {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .driver-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .driver-visual img {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .download-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .download-visual img {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-300);
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .btn-download {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-title-bold {
        font-size: 100px;
        letter-spacing: 5px;
    }
    
    .hero-subtitle-full {
        font-size: 18px;
    }
    
    .section-title-bold {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .features-bar {
        gap: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .services-section h2,
    .moto-text h2,
    .driver-content h2,
    .faq-section h2,
    .download-content h2 {
        font-size: 28px;
    }
    
    .driver-stats {
        grid-template-columns: 1fr;
    }
    
    .store-buttons,
    .store-buttons-new {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-title-bold {
        font-size: 60px;
        letter-spacing: 3px;
    }
    
    .hero-subtitle-full {
        font-size: 16px;
    }
    
    .section-title-bold {
        font-size: 28px;
        letter-spacing: 0.5px;
    }
    
    .btn-hero {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-badge {
        display: none;
    }
    
    .coverage-grid {
        gap: 8px;
    }
    
    .coverage-item {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* ===== ULTRA SMOOTH SCROLL ANIMATIONS ===== */

/* Custom easing functions */
:root {
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
    --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Smooth scrolling for all */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* GPU acceleration for smooth animations */
.hero-full,
.section-fullbg,
.securite-section,
.steps-section,
.footer {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ===== REVEAL ANIMATIONS - ULTRA SMOOTH ===== */

/* Base reveal - from bottom */
.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s var(--ease-out-expo),
                transform 1.2s var(--ease-out-expo);
    will-change: opacity, transform;
}

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

/* Reveal from left with rotation */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px) rotate(-2deg);
    transition: opacity 1s var(--ease-out-expo),
                transform 1.2s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

/* Reveal from right with rotation */
.reveal-right {
    opacity: 0;
    transform: translateX(100px) rotate(2deg);
    transition: opacity 1s var(--ease-out-expo),
                transform 1.2s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

/* Scale reveal with spring */
.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 1s var(--spring);
    will-change: opacity, transform;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Fade reveal with blur */
.reveal-fade {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1.2s var(--ease-out-expo),
                filter 1s var(--ease-out-expo);
    will-change: opacity, filter;
}

.reveal-fade.active {
    opacity: 1;
    filter: blur(0);
}

/* 3D flip reveal */
.reveal-flip {
    opacity: 0;
    transform: perspective(1000px) rotateX(30deg) translateY(50px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 1s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal-flip.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}

/* Staggered delays - smoother */
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== HERO ANIMATIONS - CINEMATIC ===== */

.hero-title-animate {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: heroTitleIn 1.4s var(--ease-out-expo) forwards;
    animation-delay: 0.3s;
}

.hero-subtitle-animate {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    animation: heroSubtitleIn 1.2s var(--ease-out-expo) forwards;
    animation-delay: 0.7s;
}

.hero-buttons-animate {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: heroButtonsIn 1s var(--spring) forwards;
    animation-delay: 1.1s;
}

@keyframes heroTitleIn {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
        letter-spacing: 20px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 8px;
    }
}

@keyframes heroSubtitleIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroButtonsIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== PARALLAX EFFECTS ===== */

.parallax-bg {
    will-change: transform;
    transition: transform 0.15s linear;
}

.hero-background img,
.section-background img {
    transition: transform 0.8s var(--ease-out-expo),
                filter 0.5s ease;
    will-change: transform, filter;
}

/* Subtle zoom on section hover */
.section-fullbg:hover .section-background img {
    transform: scale(1.03);
}

/* ===== CARD HOVER EFFECTS - ULTRA SMOOTH ===== */

.securite-card {
    transition: transform 0.6s var(--ease-out-expo),
                box-shadow 0.6s var(--ease-out-expo),
                background 0.4s ease;
    will-change: transform, box-shadow;
}

.securite-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(255, 107, 0, 0.1);
}

.securite-card:hover .securite-icon {
    animation: iconBounce 0.6s var(--spring);
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.step-card {
    transition: transform 0.6s var(--ease-out-expo),
                box-shadow 0.6s var(--ease-out-expo),
                border-color 0.4s ease;
    will-change: transform, box-shadow;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.step-card:hover .step-number {
    animation: numberPulse 0.8s var(--ease-out-expo);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== BUTTON EFFECTS ===== */

.store-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out-expo),
                box-shadow 0.5s var(--ease-out-expo),
                border-color 0.3s ease;
    will-change: transform, box-shadow;
}

.store-btn::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.7s var(--ease-out-expo);
}

.store-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(255, 107, 0, 0.2);
}

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

.btn-primary {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out-expo),
                box-shadow 0.5s var(--ease-out-expo),
                background 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* ===== GLOW EFFECTS ===== */

.text-highlight {
    color: var(--primary);
    text-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
}

.hero-title-bold {
    text-shadow: 0 4px 30px rgba(0,0,0,0.4),
                 0 0 60px rgba(255, 107, 0, 0.2);
}

/* Orange glow on primary elements */
.step-number,
.btn-primary,
.btn-download {
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

/* ===== SMOOTH LINE ANIMATIONS ===== */

.step-arrow {
    transition: transform 0.5s var(--ease-out-expo),
                color 0.3s ease;
}

.steps-grid:hover .step-arrow {
    animation: arrowPulse 1.5s infinite var(--ease-in-out-cubic);
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

/* ===== HEADER SMOOTH TRANSITION ===== */

.header {
    transition: background 0.5s var(--ease-out-expo),
                backdrop-filter 0.5s var(--ease-out-expo),
                box-shadow 0.5s var(--ease-out-expo);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

/* Nav links hover effect */
.nav-links a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s var(--ease-out-expo);
}

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

/* ===== FOOTER ANIMATIONS ===== */

.footer-brand,
.footer-column {
    will-change: opacity, transform;
}

.footer-column a {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* ===== LOADING ANIMATION ===== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s var(--ease-out-expo),
                visibility 0.8s var(--ease-out-expo);
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 107, 0, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== SCROLL PROGRESS INDICATOR ===== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #FF9A4D);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}

/* ===== FLOATING ELEMENTS ===== */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* ===== MOUSE FOLLOWER ===== */

.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s var(--ease-out-expo),
                width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo),
                background 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.2);
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */

@media (max-width: 1200px) {
    .hero-title-bold {
        font-size: 120px;
        letter-spacing: 6px;
    }
    
    .section-content-left,
    .section-content-right {
        padding: 60px 40px;
    }
}

@media (max-width: 1024px) {
    .hero-title-bold {
        font-size: 90px;
        letter-spacing: 4px;
    }
    
    .securite-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-card {
        max-width: 100%;
        width: 100%;
    }
    
    .section-fullbg {
        min-height: auto;
        padding: 80px 0;
    }
    
    /* Disable cursor follower on tablet */
    .cursor-follower {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title-bold {
        font-size: 60px;
        letter-spacing: 3px;
    }
    
    .hero-subtitle-full {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .section-title-bold {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .section-fullbg {
        min-height: 70vh;
    }
    
    .section-content-left,
    .section-content-right {
        padding: 60px 24px;
        max-width: 100%;
        text-align: left;
    }
    
    .section-content-right {
        text-align: left;
    }
    
    .section-content-right .store-buttons-new {
        justify-content: flex-start;
    }
    
    .section-overlay,
    .section-overlay-right {
        background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%);
    }
    
    .securite-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .securite-card {
        padding: 30px 20px;
    }
    
    .hero-content-left {
        padding: 100px 24px 60px;
    }
    
    /* Boutons store alignés à gauche sur mobile */
    .store-buttons-new {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 12px;
    }
    
    .store-btn {
        padding: 16px 24px;
        width: auto;
        justify-content: flex-start;
    }
    
    .store-btn-text strong {
        font-size: 20px;
    }
    
    .nav {
        padding: 15px 20px;
    }
    
    .logo span {
        font-size: 24px;
    }
    
    .btn-driver-nav {
        display: none;
    }
    
    /* Mobile menu styling */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s var(--ease-out-expo),
                    visibility 0.5s var(--ease-out-expo);
    }
    
    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 24px;
        color: var(--white);
    }
    
    /* Bouton Devenir Chauffeur dans le menu mobile */
    .nav-btn-driver {
        margin-top: 20px;
        padding: 16px 32px !important;
        background: var(--primary);
        border-radius: 30px;
        font-weight: 600 !important;
        font-size: 18px !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .nav-btn-driver:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    }
    
    /* Reveal animations - reduced motion on mobile */
    .reveal {
        transform: translateY(40px);
    }
    
    .reveal-left {
        transform: translateX(-40px) rotate(0);
    }
    
    .reveal-right {
        transform: translateX(40px) rotate(0);
    }
    
    /* Footer responsive */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column a:hover {
        transform: translateX(0);
    }
}

/* Cacher le bouton Devenir Chauffeur du menu sur desktop */
@media (min-width: 769px) {
    .nav-btn-driver {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-bold {
        font-size: 48px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle-full {
        font-size: 15px;
    }
    
    .section-title-bold {
        font-size: 28px;
        letter-spacing: 0.5px;
    }
    
    .hero-content-left {
        padding: 80px 16px 50px;
    }
    
    .section-content-left,
    .section-content-right {
        padding: 50px 16px;
    }
    
    .store-buttons-new {
        flex-direction: column;
        gap: 12px;
    }
    
    .store-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .securite-section,
    .steps-section {
        padding: 60px 16px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .footer {
        padding: 40px 16px 20px;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */

@media (hover: none) {
    .securite-card:hover,
    .step-card:hover,
    .store-btn:hover,
    .btn-primary:hover {
        transform: none;
    }
    
    .store-btn::before {
        display: none;
    }
    
    .btn-primary::after {
        display: none;
    }
    
    .cursor-follower {
        display: none;
    }
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-fade,
    .reveal-flip {
        opacity: 1;
        transform: none;
        filter: none;
    }
    
    .hero-title-animate,
    .hero-subtitle-animate,
    .hero-buttons-animate {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
    }
    
    .cursor-follower,
    .page-loader {
        display: none;
    }
}

/* ===== HIGH CONTRAST MODE ===== */

@media (prefers-contrast: high) {
    :root {
        --primary: #FF8C00;
    }
    
    .hero-overlay,
    .section-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}
