:root {
    /* === CHARTE COULEURS NORD SPORT LOCATION === */
    --primary: #C8A97E;        /* Or Doux */
    --primary-light: #F8DABD;  /* Beige Sable */
    --primary-dark: #A07850;   /* Or Foncé */
    --accent: #C8A97E;

    --bg-black: #111111;       /* Noir Profond */
    --bg-dark: #2A2A2A;        /* Gris Anthracite */
    --bg-card: #1C1C1C;        /* Carte sombre */
    --bg-section: #161616;     /* Section intermédiaire */

    --text-white: #FFFFFF;
    --text-off-white: #F0EDE8;  /* Blanc cassé pour body */
    --text-gray: #9A9590;       /* Gris chaud */
    --text-gray-medium: #6B6B6B; /* Gris Moyen */

    --glass: rgba(200, 169, 126, 0.04);
    --glass-border: rgba(200, 169, 126, 0.14);
    --glass-border-subtle: rgba(255, 255, 255, 0.06);

    --gold-gradient: linear-gradient(135deg, #F8DABD 0%, #C8A97E 50%, #A07850 100%);
    --gold-gradient-soft: linear-gradient(135deg, #FFFFFF 0%, #F8DABD 40%, #C8A97E 100%);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ===== ARRIVAL MODAL ===== */
.arrival-modal {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
}

.arrival-modal.open {
    opacity: 1; pointer-events: all;
}

.arrival-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.arrival-modal-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: 100%; max-width: 900px;
    max-height: 90vh;
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}

.arrival-modal.open .arrival-modal-inner {
    transform: translateY(0) scale(1);
}

.arrival-modal-close {
    position: absolute; top: 1rem; right: 1rem;
    z-index: 10;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: #FFF;
    transition: background 0.3s, transform 0.3s;
}

.arrival-modal-close:hover { background: rgba(255,255,255,0.1); transform: rotate(90deg); }
.arrival-modal-close i { width: 16px; height: 16px; }

.arrival-modal-video-wrap {
    position: relative; overflow: hidden;
    min-height: 400px;
    background: #000;
}

.arrival-modal-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

.arrival-modal-video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, #0e0e0e 100%),
                linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
}

.arrival-modal-content {
    padding: 3rem 2.5rem;
    display: flex; flex-direction: column;
    justify-content: center; gap: 1.2rem;
}

.arrival-simple-text {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    font-weight: 500;
}

.arrival-pulse::after {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    animation: arrival-ring 1.5s ease-out infinite;
}

@keyframes arrival-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.arrival-modal-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400; line-height: 1.2;
}

.arrival-modal-content p {
    color: var(--text-gray);
    font-size: 0.87rem; font-weight: 300;
    line-height: 1.7;
}

.arrival-modal-tag {
    display: inline-flex; align-items: center;
    font-size: 0.7rem;
    color: #FFF;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 0.35rem 0.8rem;
    letter-spacing: 0.5px;
    width: fit-content;
}

.arrival-modal-actions {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 0.5rem;
}

.arrival-btn { font-size: 0.8rem; }

.arrival-modal-skip {
    background: none; border: none;
    font-size: 0.72rem; color: var(--text-gray);
    cursor: pointer; font-family: var(--font-body);
    text-decoration: underline; text-underline-offset: 3px;
    transition: color 0.3s;
}

.arrival-modal-skip:hover { color: #FFF; }

@media (max-width: 700px) {
    .arrival-modal-inner { grid-template-columns: 1fr; }
    .arrival-modal-video-wrap { min-height: 220px; max-height: 250px; }
    .arrival-modal-video-overlay {
        background: linear-gradient(to top, #0e0e0e 10%, transparent 60%);
    }
    .arrival-modal-content { padding: 1.8rem 1.5rem; }
}
/* ===== END ARRIVAL MODAL ===== */


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

html { scroll-behavior: smooth; font-size: 15px; }

body {
    background-color: var(--bg-black);
    color: var(--text-off-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; }

/* === TYPOGRAPHIE — Montserrat pour éléments importants === */
.btn-primary,
.btn-outline,
.btn-tel,
.badge,
.nav-links a,
.stats-label,
.stats-number,
.spec-lbl,
.brand-logo-txt,
.brand-showcase-badge,
.brand-selection-title,
.section-title,
.active-vehicle-details h3,
.footer-col h5,
.modal-header h3,
.chat-header-info h4,
.review-meta strong,
.contact-line span,
.hero-stat-label,
.hero-stat-number,
.reviews-big-number,
.review-cta-num,
.arrival-simple-text,
.arrival-modal-tag {
    font-family: var(--font-heading);
}

/* Poppins pour le corps de texte */
.hero p,
.section-subtitle,
.section-sub,
.brand-selection-desc,
.brand-showcase-tagline,
.brand-showcase-price,
.service-item p,
.review-text,
.footer-tagline,
.footer-col a,
.footer-col span,
.contact-cta-text p,
.modal-header p,
.arrival-modal-content p,
.chat-msg-content,
.chat-input-bar input,
.chat-option,
.input-group input,
.input-group textarea,
.input-group select,
.input-group label,
p {
    font-family: var(--font-body);
}

.text-gradient {
    background: var(--gold-gradient-soft);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.badge {
    background: rgba(200, 169, 126, 0.08);
    border: 1px solid rgba(200, 169, 126, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0a0a0a;
    padding: 0.75rem 2rem;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 169, 126, 0.35);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary i { width: 14px; height: 14px; }

.btn-outline {
    background: transparent;
    color: #FFF;
    padding: 0.75rem 2rem;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(200, 169, 126, 0.35);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(200, 169, 126, 0.08);
    border-color: var(--primary-light);
    color: var(--primary-light);
}
.btn-outline i { width: 14px; height: 14px; }

#custom-cursor {
    width: 12px; height: 12px; background: #FFF; border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, background 0.3s;
    display: none; top: 0; left: 0; transform: translate(-50%, -50%);
}

#custom-cursor.hovered {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.5);
}

@media (min-width: 1024px) { #custom-cursor { display: block; } }

header {
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 0;
    background: var(--bg-black);
    border-bottom: 1px solid rgba(200, 169, 126, 0.12);
}

header.scrolled {
    padding: 1.2rem 0;
    background: var(--bg-black);
    border-bottom: 1px solid rgba(200, 169, 126, 0.12);
}

header nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 64px; transition: var(--transition); }
header.scrolled .logo img { height: 48px; }
.nav-wrapper { display: flex; align-items: center; gap: 3rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
    text-decoration: none; color: var(--text-gray);
    font-size: 0.75rem; font-weight: 400;
    text-transform: uppercase; letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 1.5rem; }

.btn-tel {
    color: var(--text-gray); text-decoration: none;
    font-size: 0.8rem; display: flex; align-items: center; gap: 0.5rem;
}

.btn-tel i { width: 14px; color: var(--text-white); }

.hero {
    height: calc(100vh - 80px);
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.45) 55%, rgba(17,17,17,0.80) 100%),
                url('https://yunbaoo-cn.b-cdn.net/location-audi-rs3-breizh-car-location-scaled.webp') no-repeat center center;
    background-size: cover;
}

.hero-bg-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 1;
    opacity: 0.55;
}

.hero .container {
    width: 100%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(160deg, rgba(17,17,17,0.97) 0%, rgba(17,17,17,0.6) 45%, rgba(17,17,17,0.25) 75%, rgba(17,17,17,0.55) 100%),
        linear-gradient(to top, var(--bg-black) 0%, transparent 35%);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--primary-light) 50%, var(--primary) 70%, transparent 100%);
    opacity: 0.5;
    z-index: 5;
}

.hero-content { position: relative; z-index: 10; max-width: 700px; text-align: left; }

.hero h1 { font-size: clamp(1.8rem, 4.2vw, 3.2rem); margin-bottom: 1.2rem; font-weight: 300; }
.hero h1 span { font-weight: 500; }

.hero p {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    color: var(--text-gray); margin-bottom: 2rem;
    max-width: 480px; font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; }

.hero-stats {
    display: flex; gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.hero-stat { text-align: left; }

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem; font-weight: 500;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-stat-label {
    font-size: 0.7rem; color: var(--text-gray);
    text-transform: uppercase; letter-spacing: 1px;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); opacity: 0.4;
    animation: fade-bounce 3s ease-in-out infinite;
}

@keyframes fade-bounce {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 20px; height: 32px;
    border: 1px solid var(--text-white);
    border-radius: 20px; position: relative;
}

.mouse::before {
    content: ''; position: absolute; top: 6px; left: 50%;
    transform: translateX(-50%); width: 2px; height: 4px;
    background: var(--text-white); border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 12px); opacity: 0; }
}

.featured-slider {
    padding: 60px 0 40px;
    position: relative;
    background: radial-gradient(circle at center, #0a0a0a 0%, var(--bg-black) 100%);
    overflow: hidden;
}

.section-header { margin-bottom: 2rem; }

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-bottom: 0.5rem; font-weight: 300;
    letter-spacing: 0.5px;
}

.section-title span { font-weight: 500; }

.section-subtitle { color: var(--text-gray); font-size: 0.85rem; font-weight: 300; }

.slider-container { position: relative; width: 100%; padding: 1rem 0; }

.swiper { width: 100%; padding-top: 20px; padding-bottom: 20px; }

.mySwiper .swiper-slide {
    width: min(48vw, 340px);
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── BLOG SWIPER ── */
.blogSwiper {
    width: 100%;
    overflow: visible;
    position: relative;
}

.blogSwiper .swiper-wrapper {
    align-items: stretch;
}

.blogSwiper .swiper-slide,
.blogSwiper .swiper-slide-duplicate {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    border-radius: 28px;
    overflow: hidden;
}

.car-presentation {
    width: 100%; height: 100%;
    overflow: hidden;
}

.car-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.swiper-slide-active .car-img { transform: scale(1.08); }

.active-vehicle-details {
    text-align: center; margin-top: 1rem; padding-bottom: 1rem;
}

.active-vehicle-details h3 {
    font-size: 1.5rem; margin-bottom: 0.15rem;
    font-weight: 400; letter-spacing: 1px;
}

.active-vehicle-details p {
    font-size: 0.85rem; color: var(--text-gray);
    font-weight: 300; margin-bottom: 1rem;
}

.btn-reserve-car {
    font-size: 0.65rem !important;
    padding: 0.5rem 1.2rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.slider-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; margin-top: 0.5rem; position: relative; z-index: 10;
}

.slider-nav-btn {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 !important;
    width: 38px !important;
    height: 38px !important;
    background: var(--glass) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFF !important;
    transition: var(--transition) !important;
    z-index: 10 !important;
    cursor: pointer !important;
}

.slider-nav-btn:hover { background: #FFF !important; color: #000 !important; }
.slider-nav-btn::after { display: none !important; }
.slider-nav-btn i { width: 18px !important; height: 18px !important; }

.swiper-pagination { position: static; width: auto; }
.swiper-pagination-bullet { background: var(--text-gray); opacity: 0.5; }
.swiper-pagination-bullet-active { background: #FFF; opacity: 1; }

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 80px 0 100px;
    background: #161616 !important;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(200,169,126,0.08);
}

.reviews-new-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-new-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
}

.reviews-new-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.reviews-new-body {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Score block */
.reviews-score-new {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.rsn-excellent {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.rsn-stars {
    font-size: 1.7rem;
    color: #FBBC05;
    line-height: 1;
    letter-spacing: 2px;
}

.rsn-count {
    font-size: 0.78rem;
    color: var(--text-gray);
}

.rsn-google-logo {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 4px;
    font-family: 'Product Sans', Arial, sans-serif;
}

/* Nav buttons */
.rnav-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: border-color 0.2s, background 0.2s;
    backdrop-filter: blur(8px);
}

.rnav-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.rnav-btn svg { width: 16px; height: 16px; }

/* Carousel */
.reviews-carousel-viewport {
    flex: 1;
    overflow: hidden;
}

.reviews-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Review cards */
.rcn-card {
    flex: 0 0 calc(50% - 0.75rem);
    background: rgba(20,20,20,0.85);
    border: 1px solid rgba(200,169,126,0.15);
    border-radius: 10px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 0;
    transition: border-color 0.3s;
}

.rcn-card:hover {
    border-color: rgba(200,169,126,0.35);
}

.rcn-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.rcn-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rcn-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.rcn-meta strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: #FFFFFF;
}

.rcn-meta span {
    font-size: 0.72rem;
    color: var(--text-gray);
}

.rcn-glogo {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.rcn-stars {
    font-size: 1rem;
    color: #FBBC05;
    letter-spacing: 1px;
}

.rcn-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 900px) {
    .reviews-score-new { width: 140px; }
    .rsn-excellent { font-size: 1rem; }
}

@media (max-width: 640px) {
    .reviews-new-body { gap: 0.8rem; }
    .reviews-score-new { display: none; }
    .rcn-card { flex: 0 0 100%; }
}

.services { padding: 80px 0; }

.grid-2 {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}

.services-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

.service-item { display: flex; gap: 1.2rem; }

.s-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(200, 169, 126, 0.08);
    border: 1px solid rgba(200, 169, 126, 0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
}

.s-icon i { width: 18px; }

.service-item h4 { font-size: 1rem; margin-bottom: 0.2rem; font-weight: 400; }
.service-item p { color: var(--text-gray); font-size: 0.85rem; font-weight: 300; }

.services-visual .glass-card {
    height: 450px; border-radius: 12px; overflow: hidden;
    border: 1px solid var(--glass-border);
}

.img-fill { width: 100%; height: 100%; object-fit: contain; filter: brightness(0.95); background: #0a0a0a; }

.trust-section { padding: 60px 0 0; overflow: hidden; }

.trust-header { margin-bottom: 1.5rem; }

.trust-score {
    display: flex; justify-content: center; margin-bottom: 2.5rem;
}

.trust-score-inner {
    display: flex; align-items: center; gap: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
}

.trust-badge-icon {
    width: 48px; height: 48px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #25D366;
}

.trust-badge-icon i { width: 24px; height: 24px; }

.trust-main { display: flex; align-items: center; gap: 1rem; }

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.8rem; font-weight: 600;
    line-height: 1;
    background: linear-gradient(135deg, #FFF 0%, #FBBC05 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-stars-block { display: flex; flex-direction: column; gap: 4px; }

.stars { display: flex; gap: 3px; color: #FBBC05; }
.stars i, .stars svg { width: 16px; height: 16px; fill: #FBBC05; stroke: #FBBC05; }

.trust-count { color: var(--text-gray); font-size: 0.8rem; font-weight: 300; }

.trust-google {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding-left: 1.5rem;
    border-left: 1px solid var(--glass-border);
}

.google-logo { height: 28px; }

.trust-google span {
    font-size: 0.65rem; color: var(--text-gray);
    font-weight: 300; letter-spacing: 0.5px;
}

.testimonials-marquee {
    width: 100%; overflow: hidden;
    padding: 1.5rem 0 2rem;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex; gap: 1.5rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

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

.marquee-card {
    flex-shrink: 0;
    width: 320px;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    position: relative;
}

.marquee-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.06);
    line-height: 1;
}

.marquee-stars { display: flex; gap: 3px; color: #FBBC05; margin-bottom: 1rem; }
.marquee-stars i, .marquee-stars svg { width: 13px; height: 13px; fill: #FBBC05; stroke: #FBBC05; }

.marquee-card p {
    font-size: 0.85rem; font-style: italic;
    color: rgba(255,255,255,0.9); font-weight: 300;
    margin-bottom: 1rem; line-height: 1.6;
}

.marquee-author {
    font-size: 0.75rem; color: var(--text-gray); font-weight: 400;
    display: flex; align-items: center; gap: 0.5rem;
}

.marquee-author::before {
    content: '';
    width: 16px; height: 1px;
    background: var(--glass-border);
}

.contact-strip { padding: 60px 0; }

.blog-preview-section {
    padding: 80px 0 100px;
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.blog-preview-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.section-sub {
    color: var(--text-gray);
    font-size: 0.88rem;
    font-weight: 300;
    margin-top: 0.4rem;
}

.blog-preview-all {
    flex-shrink: 0;
    font-size: 0.75rem;
    white-space: nowrap;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.blog-preview-featured,
.swiper-slide-duplicate .blog-preview-featured {
    display: block;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.blog-preview-video-wrap,
.swiper-slide-duplicate .blog-preview-video-wrap {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    /* Force le respect des coins arrondis sur tous les navigateurs */
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.blog-preview-video-wrap video,
.swiper-slide-duplicate .blog-preview-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 28px;
}

.blog-preview-featured:hover .blog-preview-video-wrap video {
    transform: scale(1.03);
}

.blog-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    gap: 0.7rem;
}

.blog-preview-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
}

.blog-preview-cat i { width: 11px; height: 11px; }

.blog-preview-overlay h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    line-height: 1.3;
    max-width: 700px;
}

.blog-preview-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.blog-preview-date i { width: 12px; height: 12px; }

@media (max-width: 768px) {
    .blogSwiper .swiper-slide,
    .blogSwiper .swiper-slide-duplicate,
    .blog-preview-featured,
    .blog-preview-video-wrap {
        border-radius: 28px;
    }
    .blog-preview-video-wrap { height: 380px; }
    .blog-preview-overlay { padding: 1.5rem; }
    .blog-preview-header { flex-direction: column; align-items: flex-start; }
}



.contact-cta {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 2rem;
    padding: 3.5rem 3rem;
    background: rgba(17,17,17,0.9);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
}

.contact-cta-text p {
    color: var(--text-gray); font-size: 0.9rem;
    font-weight: 300; margin-top: 0.5rem;
}

.contact-cta-info {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 1.5rem 2.5rem;
}

.contact-line {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--text-gray); font-size: 0.85rem;
    text-decoration: none; font-weight: 300;
    transition: var(--transition);
}

a.contact-line:hover { color: #FFF; }
.contact-line i { width: 16px; color: var(--text-white); }

.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(200, 169, 126, 0.15);
    background: #0a0a0a;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo-img { height: 36px !important; margin-bottom: 1rem; }

.footer-tagline {
    color: var(--text-gray); font-size: 0.8rem;
    font-weight: 300; margin-bottom: 1.5rem; max-width: 260px;
}

.footer-socials { display: flex; gap: 0.6rem; }

.social-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-gray); transition: var(--transition);
    text-decoration: none;
}

.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { border-color: var(--primary); color: var(--primary-light); }

.footer-col h5 {
    margin-bottom: 1.2rem; color: #FFF;
    text-transform: uppercase; font-size: 0.7rem;
    letter-spacing: 1.5px; font-weight: 500;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a, .footer-col span {
    color: var(--text-gray); text-decoration: none;
    font-size: 0.8rem; font-weight: 300;
    transition: var(--transition);
    display: flex; align-items: center; gap: 0.4rem;
}

.footer-col a:hover { color: #FFF; }
.footer-col i { width: 13px; height: 13px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    margin-top: 2.5rem;
    padding: 1.8rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
/* Top row: copyright + legal links */
.footer-bottom-row {
    display: flex; align-items: center; flex-wrap: wrap;
    justify-content: center; gap: 0.5rem 1.2rem;
}
.footer-copy {
    font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.35);
    white-space: nowrap;
}
.footer-dot-sep {
    width: 3px; height: 3px; border-radius: 50%;
    background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.footer-legal-links {
    display: flex; align-items: center; flex-wrap: wrap;
    justify-content: center; gap: 0;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.32); text-decoration: none;
    font-size: 0.67rem; font-weight: 300;
    letter-spacing: 0.3px; padding: 0.15rem 0.75rem;
    transition: color 0.2s;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.footer-legal-links a:last-child { border-right: none; }
.footer-legal-links a:hover { color: var(--primary); }
.footer-sep { display: none; }
/* Bottom row: GDR AGENCY */
.footer-agency-row {
    display: flex; align-items: center; flex-wrap: wrap;
    justify-content: center; gap: 0.35rem 0.5rem;
    font-size: 0.62rem; font-weight: 300;
    color: rgba(255,255,255,0.15);
}
.footer-agency-sep { color: rgba(255,255,255,0.1); }
.footer-agency-link {
    color: rgba(255,255,255,0.22); text-decoration: none;
    letter-spacing: 0.5px; font-weight: 400;
    transition: color 0.2s;
}
.footer-agency-link:hover { color: rgba(200,169,126,0.55); }
.footer-agency-email { font-weight: 300; letter-spacing: 0; }
@media (max-width: 600px) {
    .footer-dot-sep { display: none; }
    .footer-bottom-row { flex-direction: column; gap: 0.6rem; }
}

/* ===== LEGAL MODAL ===== */
.legal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
    padding: 1rem;
}
.legal-overlay.open { opacity: 1; pointer-events: all; }
.legal-sheet {
    background: #0D0F12; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; width: 100%; max-width: 640px;
    max-height: 85vh; overflow-y: auto;
    padding: 2rem 2.2rem;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.22,0.61,0.36,1);
    position: relative;
}
.legal-overlay.open .legal-sheet { transform: translateY(0) scale(1); }
.legal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    width: 30px; height: 30px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--text-gray); font-size: 1.1rem;
    transition: background 0.2s;
}
.legal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.legal-sheet h2 { font-size: 1.1rem; font-weight: 400; margin-bottom: 1.5rem; padding-right: 2rem; }
.legal-sheet h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-gray); margin: 1.4rem 0 0.5rem; }
.legal-sheet p, .legal-sheet li { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.8; }
.legal-sheet ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.3rem; }
.legal-sheet ul li::before { content: "— "; color: var(--text-gray); }
.legal-sheet .legal-sep { height: 1px; background: rgba(255,255,255,0.07); margin: 1rem 0; }
@media (max-width: 600px) { .legal-sheet { padding: 1.5rem 1.2rem; } }

.modal-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-container {
    background: #0d0d0d;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: min(90vw, 560px);
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: transparent; border: none;
    color: var(--text-gray); cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover { color: #FFF; }
.modal-close i { width: 20px; height: 20px; }

.modal-header { margin-bottom: 2rem; }

.modal-header h3 {
    font-size: 1.4rem; font-weight: 400;
    margin-bottom: 0.3rem;
}

.modal-header p { font-size: 0.85rem; color: var(--text-gray); font-weight: 300; }

.modal-form { display: flex; flex-direction: column; gap: 1.5rem; }

.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.input-group { position: relative; width: 100%; }

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid var(--glass-border);
    padding: 0.7rem 0; color: #FFF;
    font-family: var(--font-body); font-size: 0.85rem;
    outline: none; transition: var(--transition);
}

.input-group label {
    position: absolute; top: 0.7rem; left: 0;
    color: var(--text-gray); font-size: 0.85rem;
    pointer-events: none; transition: var(--transition);
    font-weight: 300;
}

.input-group .label-static {
    top: -0.9rem; font-size: 0.7rem; color: var(--text-gray);
}

.input-group.focused label,
.input-group input:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -0.9rem; font-size: 0.7rem; color: #FFF;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-bottom-color: #FFF;
}

.input-group select { appearance: none; cursor: pointer; }
.input-group select option { background: var(--bg-card); color: #FFF; }

.btn-modal-submit { margin-top: 0.5rem; width: 100%; padding: 0.8rem; }

.mobile-toggle {
    display: none; flex-direction: column; gap: 6px;
    background: transparent; border: none;
    cursor: pointer; z-index: 1001; padding: 5px;
}

.mobile-toggle span { width: 24px; height: 2px; background: #FFF; transition: var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
    .grid-2 { gap: 3rem; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    html { font-size: 14px; }

    /* === HEADER MOBILE === */
    .mobile-toggle { display: flex; }
    .logo img { height: 40px; }
    header.scrolled .logo img { height: 32px; }

    .nav-wrapper {
        position: fixed; top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: rgba(8,8,8,0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column; justify-content: center; align-items: center;
        z-index: 1000; transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 3rem 2rem;
        border-left: 1px solid rgba(200, 169, 126, 0.12);
    }

    .nav-wrapper.active { right: 0; }
    .nav-links { flex-direction: column; align-items: center; gap: 2rem; }
    .nav-links a {
        font-size: 1rem;
        letter-spacing: 3px;
        color: var(--text-off-white) !important;
    }
    .nav-links a:hover { color: var(--primary-light) !important; }

    .header-cta {
        flex-direction: column;
        margin-top: 2.5rem;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }
    .btn-tel { color: var(--text-gray); font-size: 0.85rem; }

    /* === HERO MOBILE === */
    .hero {
        text-align: center;
        height: calc(100svh - 70px);
        min-height: 480px;
        background-position: center 35%;
    }
    .hero-content { margin: 0 auto; padding-top: 0; }
    .hero-actions { justify-content: center; flex-direction: column; gap: 0.8rem; }
    .hero-stats { justify-content: center; gap: 1.5rem; }
    .btn-primary, .btn-outline { width: 100%; max-width: 320px; justify-content: center; margin: 0 auto; }

    /* === SWIPER MOBILE === */
    .mySwiper .swiper-slide { width: 72vw; height: 180px; }

    /* === GRID MOBILE === */
    .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
    .services-visual { order: -1; }
    .services-visual .glass-card { height: 220px; }

    /* === STATS MOBILE === */
    .stats-grid-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .stats-section { padding: 36px 0; }
    .stats-card { padding: 1.3rem 1rem; }
    .stats-number { font-size: 2.2rem; }

    /* === BRAND SHOWCASE MOBILE === */
    .brand-showcase-card {
        grid-template-columns: 1fr;
    }
    .brand-showcase-content {
        padding: 2rem 1.5rem;
        order: 2;
    }
    .brand-showcase-visual {
        height: 280px;
        order: 1;
    }
    .brand-showcase-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    .spec-val { font-size: 0.9rem; }
    .brand-logos-row { gap: 1.8rem; }
    .brand-selection-section { padding: 50px 0; }
    .brand-selection-title { font-size: 1.4rem; letter-spacing: 2px; }

    /* === CONTACT === */
    .contact-cta { padding: 2rem 1.2rem; }
    .contact-cta-info { flex-direction: column; gap: 0.8rem; align-items: flex-start; }
    .contact-cta-info .contact-line { text-align: left; }

    /* === MODAL === */
    .modal-row { grid-template-columns: 1fr; }
    .modal-container { padding: 1.8rem 1.2rem; }

    /* === FOOTER MOBILE === */
    .footer-main { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-logo-img { margin: 0 auto 1rem; height: 30px !important; }
    .footer-tagline { margin: 0 auto 1.5rem; }
    .footer-socials { justify-content: center; }
    .footer-col a, .footer-col span { justify-content: center; }

    /* === FAB === */
    .floating-buttons { bottom: 14px; right: 14px; gap: 10px; }
    .fab { width: 50px; height: 50px; }
    .fab svg { width: 22px; height: 22px; }

    /* === CONTAINER === */
    .container { padding: 0 1.1rem; }

    /* === BLOG MOBILE === */
    .blog-preview-section { padding: 55px 0 75px; }
    .blog-preview-header { gap: 1rem; }
    .blog-preview-all { width: 100%; justify-content: center; }
    .blog-preview-video-wrap { height: 280px; }
    .blog-preview-overlay { padding: 1.2rem 1rem; gap: 0.4rem; }
    .blog-preview-overlay h3 { font-size: 0.95rem; line-height: 1.4; }

    /* === REVIEWS MOBILE === */
    .reviews-section { padding: 55px 0 75px; }

    /* === SERVICES MOBILE === */
    .services { padding: 55px 0; }
    .services-list { gap: 1.2rem; }
}

.floating-buttons {
    position: fixed; bottom: 24px; right: 24px;
    display: flex; flex-direction: column; gap: 12px;
    z-index: 1500;
}

.fab {
    width: 56px; height: 56px;
    border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 6px 25px rgba(0,0,0,0.5);
    text-decoration: none;
}

.fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,0.6); }
.fab svg { width: 24px; height: 24px; }

.fab-whatsapp {
    background: #25D366; color: #FFF;
    position: relative;
}

.fab-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: fab-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes fab-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

.fab-chat {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid var(--glass-border);
    padding: 0; overflow: hidden;
    position: relative;
}

.fab-chat::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    animation: fab-pulse-light 2.5s ease-out infinite 0.5s;
    z-index: -1;
}

@keyframes fab-pulse-light {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

.fab-logo {
    width: 34px; height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.chatbot-window {
    position: fixed; bottom: 90px; right: 24px;
    width: min(400px, calc(100vw - 32px));
    height: 520px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    z-index: 1600;
    display: flex; flex-direction: column;
    opacity: 0; pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.chatbot-window.active {
    opacity: 1; pointer-events: all;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
}

.chat-header-left {
    display: flex; align-items: center; gap: 0.8rem;
}

.chat-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    flex-shrink: 0;
}

.chat-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.chat-header-info h4 { font-size: 0.85rem; font-weight: 500; }

.chat-header-info > span {
    font-size: 0.7rem; color: #25D366;
    display: flex; align-items: center; gap: 6px;
}

.online-dot {
    display: inline-block;
    width: 7px; height: 7px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.chat-close {
    background: transparent; border: none;
    color: var(--text-gray); cursor: pointer;
    transition: var(--transition);
}

.chat-close:hover { color: #FFF; }
.chat-close svg { width: 18px; height: 18px; }

.chat-messages {
    flex: 1; overflow-y: auto;
    padding: 1.2rem; display: flex;
    flex-direction: column; gap: 1rem;
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 4px; }

.chat-msg {
    display: flex; gap: 0.6rem; align-items: flex-start;
    animation: msg-in 0.3s ease-out;
}

@keyframes msg-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-msg-avatar {
    width: 28px; height: 28px; min-width: 28px;
    border-radius: 50%; overflow: hidden;
    border: 1px solid var(--glass-border);
}

.chat-msg-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-msg-content {
    padding: 0.8rem 1rem;
    border-radius: 14px;
    font-size: 0.82rem;
    line-height: 1.6; font-weight: 300;
    max-width: 85%;
}

.chat-msg-content strong { font-weight: 500; }

.chat-msg.bot .chat-msg-content {
    background: rgba(255,255,255,0.06);
    border-bottom-left-radius: 4px;
    color: #FFF;
}

.chat-msg.user {
    flex-direction: row-reverse;
}

.chat-msg.user .chat-msg-content {
    background: var(--gold-gradient);
    color: #0a0a0a;
    border-bottom-right-radius: 4px;
}

.chat-options {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 0.8rem;
}

.chat-option {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: #FFF; padding: 0.4rem 0.9rem;
    border-radius: 50px; font-size: 0.72rem;
    cursor: pointer; transition: var(--transition);
    font-family: var(--font-body);
    display: inline-flex; align-items: center; gap: 4px;
}

.chat-option i { width: 12px; height: 12px; }
.chat-option:hover { background: #FFF; color: #000; border-color: #FFF; }

.chat-typing {
    display: flex; gap: 4px; align-items: center;
    padding: 0.8rem 1rem;
}

.chat-typing span {
    width: 6px; height: 6px;
    background: var(--text-gray);
    border-radius: 50%;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

.chat-input-bar {
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex; gap: 0.6rem; align-items: center;
    background: rgba(255,255,255,0.02);
}

.chat-input-bar input {
    flex: 1; background: transparent;
    border: none; color: #FFF; outline: none;
    font-size: 0.82rem; font-family: var(--font-body);
}

.chat-input-bar input::placeholder { color: var(--text-gray); }

.chat-send {
    background: var(--gold-gradient);
    border: none; color: #000;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
    flex-shrink: 0;
}

.chat-send:hover { transform: scale(1.1); }
.chat-send svg { width: 14px; height: 14px; }


.blog-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    transition: all 0.3s;
}
.blog-pagination .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 24px !important;
    border-radius: 4px !important;
}
.blog-prev-btn, .blog-next-btn {
    position: static !important;
    margin: 0 !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFF !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.blog-prev-btn::after, .blog-next-btn::after {
    display: none !important;
}

.blog-prev-btn i, .blog-next-btn i {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
}

.blog-prev-btn:hover, .blog-next-btn:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.3) !important;
    transform: scale(1.05) !important;
}


.mini-blog-card {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s;
    overflow: hidden;
}
.mini-blog-card:hover {
    border-color: rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.05) !important;
    transform: translateY(-2px) !important;
}
.mini-blog-video-wrap {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
}
.mini-blog-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mini-blog-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}
.mini-blog-info h6 {
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
    color: #FFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mini-blog-info span {
    font-size: 0.65rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .blog-prev-btn, .blog-next-btn {
        display: none !important;
    }
}


.toast-notification {
    background: rgba(15, 15, 15, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(12px) !important;
    border-radius: 12px !important;
    padding: 1rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    transform: translateX(120%) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.toast-notification.active {
    transform: translateX(0) !important;
}

.toast-icon {
    width: 24px !important;
    height: 24px !important;
    background: rgba(34, 197, 94, 0.1) !important;
    color: #22c55e !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
}

.toast-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.1rem !important;
}

.toast-title {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: #FFF !important;
}

.toast-desc {
    font-size: 0.72rem !important;
    color: var(--text-gray) !important;
}

/* ===== RESPONSIVE PC — LARGE SCREENS ===== */

/* Mid-size desktop: 1025px–1400px */
@media (min-width: 1025px) {
    .nav-links { gap: 2.5rem; }
    .header-cta { gap: 1.5rem; }

    .hero h1 { font-size: clamp(2.2rem, 3.8vw, 3.5rem); }

    .mySwiper .swiper-slide { width: min(38vw, 360px); height: 240px; }

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

    .v-card-img { height: 200px; }

    .grid-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .active-vehicle-details { padding: 1.5rem 0; }
}

/* Wide desktop: 1400px+ */
@media (min-width: 1400px) {
    .container { max-width: 1380px; }

    .mySwiper .swiper-slide { width: min(32vw, 400px); height: 260px; }

    .fleet-grid { gap: 2.5rem; }

    .hero h1 { font-size: 3.6rem; }

    .section-title { font-size: 2.6rem; }

    .v-card-img { height: 220px; }
}

/* Ultra-wide: 1800px+ */
@media (min-width: 1800px) {
    .container { max-width: 1600px; }
    .fleet-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Ensure header doesn't look odd on very wide screens */
@media (min-width: 1025px) {
    header nav {
        padding: 0;
        max-width: 1380px;
        margin: 0 auto;
    }

    /* Prevent mobile nav from flashing */
    .nav-wrapper {
        position: static !important;
        width: auto !important;
        height: auto !important;
        flex-direction: row !important;
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        right: auto !important;
    }

    .nav-links {
        flex-direction: row !important;
        gap: 2rem !important;
    }

    .nav-links a { font-size: 0.78rem !important; }

    .header-cta {
        flex-direction: row !important;
        margin-top: 0 !important;
    }

    .btn-primary, .btn-outline {
        width: auto !important;
        max-width: none !important;
    }

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

/* ===== FLOTTE PAGE — PC IMPROVEMENTS ===== */
@media (min-width: 1025px) {
    .fleet-section { padding: 40px 0 120px; }

    .filter-bar { gap: 1rem; }

    .v-card:hover .v-card-img img { transform: scale(1.08); }
}

/* ===== MINI BLOG CARD ===== */
.mini-blog-card {
    display: flex;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
    align-items: center;
    padding: 0.6rem;
    border-radius: 8px;
    transition: background 0.3s;
}
.mini-blog-card:hover { background: var(--glass); }
.mini-blog-video-wrap {
    width: 60px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
}
.mini-blog-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mini-blog-info { flex: 1; }
.mini-blog-info h6 { font-size: 0.78rem; font-weight: 400; margin-bottom: 0.15rem; }
.mini-blog-info span { font-size: 0.65rem; color: var(--text-gray); }

/* ===== NEW STATS SECTION (DESCENTE) ===== */
.stats-section {
    padding: 55px 0;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(200, 169, 126, 0.12);
    position: relative;
    z-index: 10;
}

.stats-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-card {
    padding: 1.8rem 1.5rem;
    background: rgba(17,17,17,0.8);
    border: 1px solid rgba(200, 169, 126, 0.18);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0.7;
}

.stats-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 169, 126, 0.35);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(200,169,126,0.06);
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    font-weight: 300;
}

@media (max-width: 768px) {
    .stats-grid-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stats-section {
        padding: 40px 0;
    }
}

/* ===== BRAND SELECTION SECTION (SÉLECTION DE VÉHICULES ACTUELS) ===== */
.brand-selection-section {
    padding: 90px 0 80px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
    position: relative;
    overflow: hidden;
}

/* Supprimer la max-width du showcase container — pleine largeur container */
.brand-showcase-container {
    perspective: 1200px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 3rem;
}

.brand-selection-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem); /* larger capital titles */
    font-weight: 500;
    letter-spacing: 4px;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-selection-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-white); /* clean off-white */
    font-weight: 300;
    margin-bottom: 3.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

.brand-logos-row {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem;
}

.brand-logo-item {
    color: #FFFFFF; /* pure white logos from mockup */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    opacity: 0.9;
}

.brand-logo-item svg {
    width: 44px;
    height: 44px;
    transition: var(--transition);
}

.brand-logo-txt {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition);
}

.brand-logo-item:hover {
    color: var(--primary);
    transform: scale(1.06);
    opacity: 1;
}

/* ===== BRAND SHOWCASE INTERACTIVE CARD ===== */
.brand-showcase-container {
    perspective: 1000px;
}

.brand-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    background: rgba(14, 14, 14, 0.9);
    border: 1px solid rgba(200, 169, 126, 0.18);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.7);
    position: relative;
    min-height: 440px;
    transition: var(--transition);
}

.brand-showcase-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(to right, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.4) 100%);
    position: relative;
    z-index: 5;
}

.brand-showcase-badge {
    background: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.3);
    color: var(--primary-light);
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.brand-showcase-name {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.brand-showcase-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 2.2rem;
    font-weight: 300;
    line-height: 1.6;
}

.brand-showcase-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.8rem;
}

.showcase-spec {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.spec-val {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}

.spec-lbl {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--text-gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-showcase-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
}

.brand-showcase-price {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #FFFFFF;
    font-weight: 500;
}

.brand-showcase-visual {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 80%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slider intégré dans le showcase */
.brand-showcase-slider-wrap {
    flex-direction: column;
    padding: 0;
    background: radial-gradient(circle at 60% 50%, #1e1e1e 0%, #080808 100%);
    position: relative;
}

.brand-showcase-slider-wrap .mySwiper {
    width: 100%;
    height: 100%;
    flex: 1;
    min-height: 0;
    padding: 0 !important;
}

.brand-showcase-slider-wrap .swiper-wrapper {
    height: 100%;
}

.brand-showcase-slider-wrap .swiper-slide {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.brand-showcase-slider-wrap .car-presentation {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    inset: 0;
}

.brand-showcase-slider-wrap .car-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 1rem;
}

.brand-showcase-slider-wrap .swiper-slide-active .car-img {
    transform: scale(1.05);
}

/* ===== FLÈCHES SHOWCASE SLIDER ===== */
.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 20;
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(200, 169, 126, 0.35);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--primary-light);
    overflow: hidden;
}

.showcase-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-arrow svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.showcase-arrow:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(200, 169, 126, 0.25), inset 0 0 0 1px rgba(200,169,126,0.2);
    transform: translateY(-60%) scale(1.05);
}

.showcase-arrow:hover::before { opacity: 1; }
.showcase-arrow:hover svg { color: #000; }

.showcase-arrow-prev {
    left: 12px;
}

.showcase-arrow-prev:hover svg {
    transform: translateX(-2px);
}

.showcase-arrow-next {
    right: 12px;
}

.showcase-arrow-next:hover svg {
    transform: translateX(2px);
}

/* Swiper override — masquer les ::after par défaut */
.showcase-arrow::after { display: none !important; }

/* Pagination en bas du slider */
.showcase-pagination-bar {
    position: absolute;
    bottom: 14px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    z-index: 15;
}

.showcase-pagination-bar .swiper-pagination {
    position: static;
    width: auto;
}

.showcase-pagination-bar .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(200, 169, 126, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px !important;
}

.showcase-pagination-bar .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 22px;
    border-radius: 3px;
}

/* Mobile : flèches plus petites */
@media (max-width: 768px) {
    .showcase-arrow {
        width: 36px;
        height: 36px;
        top: 45%;
    }
    .showcase-arrow svg { width: 16px; height: 16px; }
    .showcase-arrow-prev { left: 8px; }
    .showcase-arrow-next { right: 8px; }
    .showcase-pagination-bar { bottom: 10px; }
}

.showcase-glow {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(17,17,17,0.7) 0%, transparent 40%),
                linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
    pointer-events: none;
}

/* Tab Active State */
.brand-logo-item {
    position: relative;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.brand-logo-item.active {
    color: var(--primary-light);
    border-bottom-color: var(--primary);
    transform: scale(1.06);
    opacity: 1;
}

.brand-logo-item:hover {
    color: var(--primary-light);
    transform: scale(1.06);
    opacity: 1;
}

@media (max-width: 1024px) {
    .brand-selection-section {
        padding: 70px 0;
    }
    .brand-logos-row {
        gap: 2.2rem;
    }
}

@media (max-width: 900px) {
    .brand-showcase-card {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .brand-showcase-content {
        padding: 2rem 1.5rem;
        background: rgba(14,14,14,0.95);
        order: 2;
    }
    .brand-showcase-visual,
    .brand-showcase-slider-wrap {
        height: 320px;
        order: 1;
        width: 100%;
    }
    .brand-showcase-slider-wrap .mySwiper,
    .brand-showcase-slider-wrap .swiper-wrapper,
    .brand-showcase-slider-wrap .swiper-slide,
    .brand-showcase-slider-wrap .car-presentation {
        height: 100% !important;
        width: 100% !important;
        max-height: none !important;
    }
    .brand-showcase-slider-wrap .car-img {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
    }
}

@media (max-width: 600px) {
    .brand-showcase-visual,
    .brand-showcase-slider-wrap {
        height: 260px;
    }
    .brand-showcase-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    .spec-val { font-size: 1rem; }
}

/* Protection contre le clic droit, la selection et le glisser-deposer des images */
.v-hero-car-img,
.gallery-swiper img,
.v-other-img img,
.car-presentation img,
.v-card-img img,
.img-fill,
.car-img,
img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
