/* ============================================================
   HORIZON.MS — Style vitrine
   Identité : noir profond / rouge racing / blanc — motif halftone
   ============================================================ */

:root {
    --noir: #070708;
    --noir-2: #0e0e11;
    --noir-3: #16161b;
    --rouge: #e10600;
    --rouge-vif: #ff1a13;
    --rouge-sombre: #8f0400;
    --blanc: #f5f5f7;
    --gris: #9b9ba3;
    --gris-2: #5b5b63;
    --bordure: rgba(255, 255, 255, 0.08);

    --font-display: 'Saira Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Barlow', 'Segoe UI', sans-serif;

    --radius: 10px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--noir);
    color: var(--blanc);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1200px, 92%); margin-inline: auto; }
.container-narrow { width: min(820px, 92%); margin-inline: auto; }
.center { text-align: center; margin-top: 48px; }

/* ============ Boutons ============ */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn-red { background: var(--rouge); color: #fff; }
.btn-red:hover { background: var(--rouge-vif); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(225, 6, 0, 0.45); }
.btn-outline { border-color: rgba(255,255,255,0.35); color: var(--blanc); background: transparent; }
.btn-outline:hover { border-color: var(--rouge); color: var(--rouge-vif); }
.btn-white { background: var(--blanc); color: var(--noir); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.btn-ghost { color: var(--rouge-vif); padding: 6px 12px; clip-path: none; }
.btn-ghost:hover { color: #fff; }
.btn-lg { padding: 16px 38px; font-size: 1.1rem; }
.btn-sm { font-size: 0.9rem; }
.btn-block { width: 100%; text-align: center; }

/* ============ Header ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 7, 8, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--bordure);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.brand-text {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}
.brand-text .dot-ms { color: var(--rouge-vif); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a:not(.btn) {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.02rem;
    color: var(--gris);
    position: relative;
    transition: var(--transition);
}
.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--rouge);
    transform: skewX(-20deg);
    transition: var(--transition);
}
.main-nav a:not(.btn):hover, .main-nav a:not(.btn).active { color: var(--blanc); }
.main-nav a:not(.btn):hover::after, .main-nav a:not(.btn).active::after { width: 100%; }

.burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--blanc); transition: var(--transition); }

/* ============ Hero ============ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-halftone, .halftone-corner {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(225, 6, 0, 0.35) 1.6px, transparent 1.6px);
    background-size: 18px 18px;
    -webkit-mask-image: radial-gradient(ellipse 60% 70% at 0% 0%, #000 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 60% 70% at 0% 0%, #000 0%, transparent 70%);
    z-index: -1;
}
.hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    right: -200px; top: -200px;
    background: radial-gradient(circle, rgba(225,6,0,0.18) 0%, transparent 65%);
    z-index: -1;
}
.hero-banner-img {
    position: absolute;
    right: -6%;
    bottom: 0;
    width: 62%;
    opacity: 0.32;
    z-index: -1;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 35%);
    pointer-events: none;
}
.hero-inner { padding: 90px 0; }
.hero-kicker {
    font-family: var(--font-display);
    color: var(--rouge-vif);
    font-weight: 700;
    letter-spacing: 0.35em;
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.hero-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(3rem, 8.5vw, 6.4rem);
    line-height: 0.98;
    text-transform: uppercase;
}
.hero-title .line { display: block; }
.hero-title .line-red { color: var(--rouge); position: relative; display: inline-block; }
.slash-deco {
    position: absolute;
    left: -4%; bottom: 18%;
    width: 108%; height: 5px;
    background: linear-gradient(90deg, var(--blanc) 48%, var(--rouge-vif) 52%);
    transform: skewX(-30deg) rotate(-2deg);
}
.hero-sub { max-width: 520px; color: var(--gris); margin: 28px 0 36px; font-size: 1.1rem; }
.hero-sub strong { color: var(--blanc); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ Sections ============ */
.section { padding: 96px 0; position: relative; }
.section-head { margin-bottom: 48px; }
.section-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.section-title span { color: var(--rouge); }
.section-sub { color: var(--gris); margin-top: 6px; }

/* ============ Services ============ */
.services { background: var(--noir-2); border-block: 1px solid var(--bordure); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.service-card {
    background: var(--noir-3);
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    padding: 34px 26px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--rouge);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(225,6,0,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 58px; height: 58px;
    display: grid; place-items: center;
    border: 2px solid var(--rouge);
    color: var(--rouge-vif);
    margin-bottom: 20px;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.45rem;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.service-card h3 small { color: var(--rouge-vif); font-size: 0.75em; }
.service-card p { color: var(--gris); font-size: 0.95rem; }

/* ============ Cartes véhicules ============ */
.vedettes { overflow: hidden; }
.grid-vehicules {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26px;
}
.card-veh {
    background: var(--noir-3);
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.card-veh:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 6, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
.card-veh-img { position: relative; aspect-ratio: 16/10; overflow: hidden; display: block; background: var(--noir-2); }
.card-veh-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card-veh:hover .card-veh-img img { transform: scale(1.06); }

.img-placeholder {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    background:
        radial-gradient(rgba(255,255,255,0.04) 1.4px, transparent 1.4px),
        var(--noir-2);
    background-size: 16px 16px;
}
.img-placeholder .ph-logo { width: 90px; height: 90px; border-radius: 50%; opacity: 0.45; }
.img-placeholder.big .ph-logo { width: 150px; height: 150px; }

.badge {
    position: absolute;
    top: 14px; left: 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.badge-dispo   { background: var(--rouge); color: #fff; }
.badge-reserve { background: #d68400; color: #fff; }
.badge-vendu   { background: var(--gris-2); color: #fff; }
.badge-depot     { background: #ca8a04; color: #fff; }
.badge-arrivage  { background: #7c3aed; color: #fff; }
.badge-prepa     { background: #2563eb; color: #fff; }
.badge-livraison { background: #0891b2; color: #fff; }
.badge-loc       { background: #0d9488; color: #fff; }
.badge-expertise { background: #64748b; color: #fff; }
.badge-exporte   { background: #4f46e5; color: #fff; }
.badge-cat     { left: auto; right: 14px; background: rgba(0,0,0,0.75); border: 1px solid var(--bordure); color: var(--blanc); }

.card-veh-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card-veh-title { font-family: var(--font-display); font-style: italic; line-height: 1.1; }
.card-veh-title .marque { display: block; color: var(--rouge-vif); font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase; }
.card-veh-title .modele { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.03em; }

.card-veh-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.card-veh-specs li {
    font-size: 0.8rem;
    color: var(--gris);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--bordure);
    padding: 3px 10px;
    border-radius: 30px;
}
.card-veh-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.card-veh-prix { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 1.5rem; color: var(--blanc); }
.card-veh-prix small { font-size: 0.6em; color: var(--gris); font-style: normal; }

.empty-msg { text-align: center; color: var(--gris); padding: 40px 0; }
.empty-msg .btn { margin-top: 18px; }

/* ============ Bande CTA ============ */
.cta-band {
    background:
        radial-gradient(rgba(255,255,255,0.12) 1.6px, transparent 1.6px),
        linear-gradient(100deg, var(--rouge-sombre), var(--rouge));
    background-size: 20px 20px, 100%;
    padding: 80px 0;
    clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1.05;
}
.cta-inner h2 span { -webkit-text-stroke: 1.5px #fff; color: transparent; }

/* ============ Pages internes ============ */
.page-head {
    position: relative;
    padding: 80px 0 50px;
    border-bottom: 1px solid var(--bordure);
    overflow: hidden;
}
.page-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    text-transform: uppercase;
}
.page-title span { color: var(--rouge); }
.page-sub { color: var(--gris); margin-top: 8px; }

.back-link { color: var(--gris); font-size: 0.95rem; display: inline-block; margin-bottom: 28px; transition: var(--transition); }
.back-link:hover { color: var(--rouge-vif); }

/* ============ Filtres catalogue ============ */
.filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 12px;
    margin-bottom: 44px;
}

.input {
    width: 100%;
    background: var(--noir-3);
    border: 1px solid var(--bordure);
    border-radius: 6px;
    color: var(--blanc);
    font-family: var(--font-body);
    font-size: 0.98rem;
    padding: 12px 14px;
    transition: var(--transition);
}
.input:focus { outline: none; border-color: var(--rouge); box-shadow: 0 0 0 3px rgba(225,6,0,0.18); }
.input::placeholder { color: var(--gris-2); }
select.input { appearance: none; cursor: pointer; }

/* ============ Fiche véhicule ============ */
.fiche { padding-top: 60px; }
.fiche-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: start; }
.fiche-img { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--bordure); aspect-ratio: 16/11; background: var(--noir-2); }
.fiche-img img { width: 100%; height: 100%; object-fit: cover; }
.fiche-cat { font-family: var(--font-display); color: var(--rouge-vif); letter-spacing: 0.25em; text-transform: uppercase; font-weight: 700; font-size: 0.9rem; }
.fiche-title { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; line-height: 1.02; margin: 8px 0 14px; }
.fiche-title span { color: var(--rouge); display: block; font-size: 0.55em; letter-spacing: 0.15em; }
.fiche-prix { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 2.4rem; margin-bottom: 28px; }
.fiche-prix small { font-size: 0.45em; color: var(--gris); }

.fiche-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.fiche-specs li {
    background: var(--noir-3);
    border: 1px solid var(--bordure);
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
}
.fiche-specs span { color: var(--gris); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.fiche-specs strong { font-size: 1.05rem; }

.fiche-desc h3 { font-family: var(--font-display); font-style: italic; letter-spacing: 0.12em; color: var(--rouge-vif); margin-bottom: 8px; }
.fiche-desc p { color: var(--gris); }
.fiche-cta { margin-top: 32px; }

/* ============ Formulaire demande ============ */
.form-demande {
    background: var(--noir-2);
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
}
.form-demande::before {
    content: '';
    position: absolute;
    top: 0; left: 40px; right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--rouge), transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.88rem;
    color: var(--gris);
    margin-bottom: 7px;
}
textarea.input { resize: vertical; min-height: 130px; }
.form-mentions { color: var(--gris-2); font-size: 0.82rem; margin-top: 14px; text-align: center; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.alert { border-radius: 6px; padding: 16px 20px; margin-bottom: 26px; font-size: 0.97rem; }
.alert-ok  { background: rgba(36, 170, 80, 0.12); border: 1px solid rgba(36, 170, 80, 0.5); color: #7ee2a0; }
.alert-err { background: rgba(225, 6, 0, 0.1); border: 1px solid rgba(225, 6, 0, 0.5); color: #ff8d89; }
.alert p + p { margin-top: 4px; }

/* ============ Footer ============ */
.site-footer { background: var(--noir-2); border-top: 1px solid var(--bordure); position: relative; }
.footer-slash {
    height: 4px;
    background: linear-gradient(90deg, var(--rouge) 0%, var(--rouge) 35%, transparent 35.5%);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding: 60px 0 44px;
}
.footer-logo { width: 84px; height: 84px; border-radius: 50%; margin-bottom: 16px; }
.footer-slogan { font-family: var(--font-display); font-style: italic; font-weight: 700; letter-spacing: 0.18em; }
.footer-slogan span { color: var(--rouge-vif); }
.footer-col h4 {
    font-family: var(--font-display);
    font-style: italic;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--blanc);
}
.footer-col li { color: var(--gris); margin-bottom: 8px; font-size: 0.95rem; }
.footer-col a:hover { color: var(--rouge-vif); }
.footer-site { margin-top: 16px; font-family: var(--font-display); letter-spacing: 0.14em; color: var(--rouge-vif); font-weight: 700; }
.footer-bottom { border-top: 1px solid var(--bordure); padding: 18px 0; color: var(--gris-2); font-size: 0.85rem; }

/* ============ Animations reveal ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
    .filters { grid-template-columns: 1fr 1fr; }
    .fiche-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-banner-img { width: 100%; opacity: 0.18; }
}
@media (max-width: 720px) {
    .burger { display: flex; }
    .main-nav {
        position: fixed;
        inset: 76px 0 auto 0;
        background: var(--noir-2);
        border-bottom: 1px solid var(--bordure);
        flex-direction: column;
        align-items: stretch;
        padding: 24px 6%;
        gap: 20px;
        transform: translateY(-130%);
        transition: transform 0.35s ease;
        z-index: 99;
    }
    .main-nav.open { transform: none; }
    .nav-cta { text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .filters { grid-template-columns: 1fr; }
    .fiche-specs { grid-template-columns: 1fr; }
    .cta-band { clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%); }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Image "Photos à venir" (véhicule sans photo) */
.ph-avenir { width: 100%; height: 100%; object-fit: cover; display: block; background: #121217; }
.card-veh-img .ph-avenir { position: absolute; inset: 0; }

/* ═══════════════════ AVIS CLIENTS (accueil) ═══════════════════ */
.avis-section { background: radial-gradient(1200px 500px at 50% -10%, #1a1a22 0%, #0e0e12 60%); padding-top: 64px; padding-bottom: 72px; }
.avis-entete { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.avis-resume { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 14px 22px; }
.avis-resume .avis-moy { font-family: 'Saira Condensed', sans-serif; font-style: italic; font-weight: 800; font-size: 52px; line-height: .9; color: #e10600; text-shadow: 0 2px 18px rgba(225,6,0,.35); }
.avis-resume .avis-moy span { font-size: 20px; color: #8a8a92; }
.avis-resume small { color: #9a9aa2; font-size: 13px; }
.av-stars { color: #ffb400; letter-spacing: 3px; }

/* Grille de cartes */
.avis-grille { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.avis-carte-pub { position: relative; background: linear-gradient(180deg, #17171e, #121217); border: 1px solid #26262e; border-radius: 18px; padding: 26px 24px 22px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; overflow: hidden; }
.avis-carte-pub::before { content: '\201C'; position: absolute; top: -18px; right: 16px; font-family: Georgia, serif; font-size: 110px; color: rgba(225,6,0,.10); line-height: 1; }
.avis-carte-pub:hover { transform: translateY(-5px); border-color: rgba(225,6,0,.55); box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.avis-carte-pub .av-top { font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.avis-carte-pub .av-com { color: #d8d8de; font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.avis-carte-pub .av-nom { font-weight: 700; color: #fff; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.avis-carte-pub .av-nom::before { content: ''; width: 26px; height: 3px; background: #e10600; border-radius: 2px; }
.avis-carte-pub .av-nom span { color: #8a8a92; font-weight: 400; font-size: 13px; }

/* Bouton ouvrir */
#btnLaisserAvis { box-shadow: 0 10px 30px rgba(225,6,0,.35); }

/* ── Formulaire ── */
.avis-form-wrap { margin-top: 30px; display: flex; justify-content: center; }
.avis-form-wrap.hidden { display: none; }
.avis-form { position: relative; background: linear-gradient(180deg, #17171e, #101015); border: 1px solid #2c2c36; border-radius: 22px; padding: 34px 34px 26px; max-width: 600px; width: 100%; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.avis-form-close { position: absolute; top: 16px; right: 18px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255,255,255,.06); color: #cfcfd6; font-size: 14px; cursor: pointer; transition: background .15s, color .15s; }
.avis-form-close:hover { background: #e10600; color: #fff; }
.avis-form-pre { color: #e10600; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-size: 12px; margin-bottom: 4px; }
.avis-form h3 { font-family: 'Saira Condensed', sans-serif; font-style: italic; font-weight: 800; text-transform: uppercase; font-size: 30px; margin-bottom: 20px; color: #fff; line-height: 1; }
.avis-champ { margin-bottom: 16px; }
.avis-champ label { display: block; font-size: 13px; color: #b8b8c0; margin-bottom: 7px; font-weight: 600; }
.avis-opt { color: #777; font-weight: 400; }
.avis-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.avis-champ input, .avis-champ textarea { width: 100%; background: #0c0c10; border: 1.5px solid #2e2e38; border-radius: 12px; padding: 13px 15px; color: #fff; font-size: 15px; font-family: inherit; transition: border-color .15s, box-shadow .15s, background .15s; }
.avis-champ input::placeholder, .avis-champ textarea::placeholder { color: #6a6a72; }
.avis-champ input:focus, .avis-champ textarea:focus { outline: none; border-color: #e10600; background: #0e0e14; box-shadow: 0 0 0 4px rgba(225,6,0,.14); }
.avis-champ textarea { resize: vertical; min-height: 96px; line-height: 1.5; }

/* Étoiles de sélection */
.avis-champ-note { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 14px 16px; }
.avis-note-ligne { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.avis-note-select { font-size: 38px; cursor: pointer; color: #34343e; letter-spacing: 6px; user-select: none; line-height: 1; }
.avis-note-select span { transition: color .12s, transform .12s; display: inline-block; }
.avis-note-select span:hover { transform: scale(1.18); }
.avis-note-select span.on { color: #ffb400; text-shadow: 0 2px 12px rgba(255,180,0,.4); }
.avis-note-label { font-size: 14px; color: #ffb400; font-weight: 700; }

.avis-form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 18px; }
.avis-btn-envoyer { box-shadow: 0 10px 26px rgba(225,6,0,.32); }
.avis-note-info { font-size: 12.5px; color: #8a8a92; text-align: center; margin-top: 14px; }
.avis-msg { padding: 11px 14px; border-radius: 11px; font-size: 14px; margin-bottom: 14px; }
.avis-msg.err { background: rgba(225,6,0,.14); border: 1px solid rgba(225,6,0,.4); color: #ff9b96; }
.avis-msg.ok { background: rgba(22,163,74,.16); border: 1px solid rgba(22,163,74,.5); color: #7ef0b0; }

@media (max-width: 620px) {
    .avis-form { padding: 26px 20px 22px; }
    .avis-form h3 { font-size: 25px; }
    .avis-row { grid-template-columns: 1fr; gap: 0; }
    .avis-note-select { font-size: 33px; }
    .avis-form-actions { flex-direction: column; }
    .avis-form-actions .btn { width: 100%; }
}

/* ===================== CONVOYAGE — bande CTA accueil ===================== */
.cv-cta { background: linear-gradient(120deg, #101015 0%, #1a0e0e 100%); padding: 60px 0; border-top: 1px solid #26262c; border-bottom: 1px solid #26262c; }
.cv-cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .cv-cta-inner { grid-template-columns: 1fr; } }
.cv-cta-desc { color: #c4c4cc; font-size: 16px; line-height: 1.6; margin: 12px 0 16px; max-width: 540px; }
.cv-cta-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.cv-cta-list li { color: #e0e0e6; font-size: 15px; }
.cv-cta-visuel { display: flex; justify-content: center; }
.cv-cta-card { background: linear-gradient(180deg, #17171e, #101015); border: 1px solid #2c2c36; border-radius: 20px; padding: 28px; width: 100%; max-width: 320px; box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.cv-cta-pin { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 15px; }
.cv-cta-pin .dot { width: 13px; height: 13px; border-radius: 50%; }
.cv-cta-pin .dot.a { background: #16a34a; } .cv-cta-pin .dot.b { background: #e10600; }
.cv-cta-line { width: 3px; height: 36px; background: linear-gradient(#16a34a, #e10600); margin: 6px 0 6px 5px; border-radius: 2px; }
.cv-cta-prix { margin-top: 20px; padding-top: 18px; border-top: 1px solid #2c2c36; color: #9a9aa2; font-size: 14px; text-align: right; }
.cv-cta-prix b { font-family: 'Saira Condensed', sans-serif; font-style: italic; font-size: 34px; color: #e10600; }
