/* ===== 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;
    }
}
