    .v-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      background: #050709;
    }

    /* Image de fond */
    .v-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .v-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      transform: scale(1.04);
      animation: heroZoom 14s ease-out forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1.08); }
      to   { transform: scale(1.0); }
    }
    /* Dégradés superposés */
    .v-hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(to top, rgba(5,7,9,.96) 0%, rgba(5,7,9,.6) 35%, rgba(5,7,9,.15) 65%, rgba(5,7,9,.05) 100%),
        linear-gradient(to right, rgba(5,7,9,.5) 0%, transparent 55%);
    }

    /* Badge flottant */
    .v-hero-badge {
      position: absolute;
      top: 110px;
      right: 2.5rem;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      background: rgba(5,7,9,.6);
      border: 1px solid #ECEEF1;
      
      
      border-radius: 14px;
      padding: 14px 18px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0,0,0,.35);
      animation: fadeSlideDown .8s ease-out .4s both;
    }
    @keyframes fadeSlideDown {
      from { opacity:0; transform:translateY(-16px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .v-hero-badge .badge-star { color: var(--accent); font-size: 1.1rem; letter-spacing:2px; }
    .v-hero-badge .badge-label { font-size: .65rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color: var(--accent); margin-top:4px; }
    .v-hero-badge .badge-sub { font-size: .65rem; color: rgba(255,255,255,.75); }

    /* Contenu hero */
    .v-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem 5rem;
    }
    .v-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(5,7,9,.55);
      
      
      border: 1px solid #ECEEF1;
      border-radius: 50px;
      padding: 5px 14px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 20px;
      animation: fadeUp .7s ease-out .1s both;
    }
    .v-hero-eyebrow::before {
      content:'';
      width:6px; height:6px;
      background: var(--accent);
      border-radius:50%;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

    .v-hero-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      line-height: 1.0;
      letter-spacing: -.03em;
      color: #ffffff;
      margin-bottom: 8px;
      animation: fadeUp .7s ease-out .2s both;
    }
    .v-hero-title span { color: var(--accent); }

    .v-hero-model {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      font-weight: 600;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: rgba(255,255,255,.85);
      text-shadow: 0 1px 4px rgba(0,0,0,.5);
      margin-bottom: 28px;
      animation: fadeUp .7s ease-out .3s both;
    }

    .v-hero-desc {
      max-width: 480px;
      font-size: .97rem;
      color: rgba(255,255,255,.65);
      line-height: 1.7;
      margin-bottom: 36px;
      animation: fadeUp .7s ease-out .35s both;
    }

    .v-hero-stats {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      margin-bottom: 36px;
      animation: fadeUp .7s ease-out .4s both;
    }
    .v-stat {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .v-stat-value {
      font-family: 'Outfit', sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--accent);
      text-shadow: 0 1px 4px rgba(0,0,0,.45);
      line-height: 1;
    }
    .v-stat-label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.78);
      text-shadow: 0 1px 3px rgba(0,0,0,.5);
    }
    .v-stat-sep {
      width: 1px;
      background: rgba(255,255,255,.12);
      align-self: stretch;
      margin: 4px 0;
    }

    .v-hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .7s ease-out .5s both;
    }
    .v-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--accent);
      color: var(--bg-dark);
      font-weight: 700;
      font-size: .9rem;
      padding: 14px 28px;
      border-radius: 50px;
      text-decoration: none;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 6px 24px transparent;
    }
    .v-btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 32px transparent; }
    .v-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.08);
      color: #fff;
      font-weight: 600;
      font-size: .9rem;
      padding: 13px 24px;
      border-radius: 50px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,.18);
      transition: background .2s, border-color .2s;
    }
    .v-btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }

    /* Scroll indicator */
    .v-hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      right: 2.5rem;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: var(--text-muted);
      font-size: .65rem;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .v-hero-scroll span {
      width: 1px;
      height: 44px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine { 0%,100%{opacity:.3;transform:scaleY(.5);transform-origin:top} 50%{opacity:1;transform:scaleY(1);transform-origin:top} }

    /* ══════════════════════════════════════
       SECTION : GALERIE INTÉRIEUR
    ══════════════════════════════════════ */
    .v-interior {
      background: var(--bg-dark);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }
    .v-interior::before {
      content:'';
      position:absolute;
      inset:0;
      background: radial-gradient(ellipse 70% 50% at 50% 100%, transparent, transparent);
      pointer-events:none;
    }
    .v-interior .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .v-section-label {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .v-section-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: var(--text-primary);
      letter-spacing: -.02em;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .v-section-title em {
      font-style: normal;
      color: var(--accent);
    }
    .v-section-line {
      display: block;
      width: 48px;
      height: 3px;
      background: var(--accent);
      border-radius: 2px;
      margin-bottom: 20px;
    }
    .v-section-desc {
      font-size: .95rem;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    /* Points clés */
    .v-points {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px;
    }
    .v-point {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .v-point-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: transparent;
      border: 1px solid #ECEEF1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: .85rem;
      flex-shrink: 0;
    }
    .v-point-text h4 {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: .88rem;
      color: var(--text-primary);
      margin-bottom: 2px;
    }
    .v-point-text p {
      font-size: .82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Image intérieur */
    .v-interior-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 32px 64px rgba(0,0,0,.6), 0 0 0 1px transparent;
    }
    .v-interior-img-wrap::before {
      content:'';
      position:absolute;
      top:0; left:0; right:0;
      height:3px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      z-index:2;
    }
    .v-interior-img-wrap img {
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transition: transform .6s ease;
    }
    .v-interior-img-wrap:hover img { transform: scale(1.03); }

    /* Pill overlay sur l'image */
    .v-img-pill {
      position: absolute;
      bottom: 18px;
      left: 18px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(5,7,9,.82);
      border: 1px solid #ECEEF1;
      
      border-radius: 50px;
      padding: 8px 14px;
      font-size: .76rem;
      font-weight: 600;
      color: var(--text-primary);
    }
    .v-img-pill i { color: var(--accent); font-size: .8rem; }

    /* ══════════════════════════════════════
       SECTION : SPECS TECHNIQUES
    ══════════════════════════════════════ */
    .v-specs {
      background: var(--luxury-2);
      padding: 6rem 0;
      position: relative;
    }
    .v-specs::before {
      content:'';
      position:absolute;
      top:0; left:0; right:0;
      height:2px;
      background: var(--luxury-separator-band);
      box-shadow: var(--luxury-separator-glow);
    }
    .v-specs::after {
      content:'';
      position:absolute;
      bottom:0; left:0; right:0;
      height:2px;
      background: var(--luxury-separator-band);
      box-shadow: var(--luxury-separator-glow);
    }
    .v-specs .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .v-specs-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .v-specs-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 3rem;
    }
    .v-spec-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      transition: border-color .25s, transform .2s, box-shadow .25s;
      position: relative;
      overflow: hidden;
    }
    .v-spec-card::before {
      content:'';
      position:absolute;
      top:0; left:0; right:0;
      height:2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      transform: scaleX(0);
      transition: transform .3s;
    }
    .v-spec-card:hover {
      border-color:#ECEEF1;
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 24px transparent;
    }
    .v-spec-card:hover::before { transform: scaleX(1); }
    .v-spec-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.1rem;
      margin: 0 auto 14px;
    }
    .v-spec-value {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 1.6rem;
      color: var(--text-primary);
      line-height: 1;
      margin-bottom: 4px;
    }
    .v-spec-value sup {
      font-size: .7rem;
      font-weight: 600;
      color: var(--accent);
    }
    .v-spec-name {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ══════════════════════════════════════
       SECTION : ÉQUIPEMENTS À BORD
    ══════════════════════════════════════ */
    .v-equipment {
      background: var(--bg-dark);
      padding: 6rem 0;
    }
    .v-equipment .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .v-equipment-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .v-equip-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .v-equip-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 26px 18px;
      text-align: center;
      transition: border-color .2s, transform .2s;
    }
    .v-equip-card:hover {
      border-color:#ECEEF1;
      transform: translateY(-3px);
    }
    .v-equip-icon {
      font-size: 2rem;
      margin-bottom: 12px;
      display: block;
      color: var(--accent);
    }
    .v-equip-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: .88rem;
      color: var(--text-primary);
      margin-bottom: 4px;
    }
    .v-equip-desc {
      font-size: .75rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ══════════════════════════════════════
       SECTION : ENGAGEMENT ENVIRONNEMENTAL
    ══════════════════════════════════════ */
    .v-eco {
      background: var(--luxury-1);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }
    .v-eco::before {
      content:'';
      position:absolute; inset:0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(52,211,153,.04), transparent);
      pointer-events:none;
    }
    .v-eco::after {
      content:'';
      position:absolute; top:0; left:0; right:0;
      height:2px;
      background: var(--luxury-separator-band);
      box-shadow: var(--luxury-separator-glow);
    }
    .v-eco .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }
    .v-eco-main {
      grid-column: span 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
    }
    .v-eco-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(52,211,153,.1);
      border: 1px solid rgba(52,211,153,.25);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #34d399;
      width: fit-content;
    }
    .v-eco-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      color: var(--text-primary);
      line-height: 1.2;
    }
    .v-eco-title span { color: #34d399; }
    .v-eco-text {
      font-size: .9rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }
    .v-eco-stat-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      justify-content: center;
    }
    .v-eco-stat-card:hover { border-color: rgba(52,211,153,.2); }
    .v-eco-num {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 2.4rem;
      color: #34d399;
      line-height: 1;
    }
    .v-eco-stat-label {
      font-size: .8rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }
    .v-eco-stat-label strong { color: var(--text-primary); }

    /* ══════════════════════════════════════
       CTA FINAL
    ══════════════════════════════════════ */
    .v-cta {
      background: var(--bg-dark);
      padding: 6rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .v-cta::before {
      content:'';
      position:absolute; inset:0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, transparent, transparent);
      pointer-events:none;
    }
    .v-cta .container {
      max-width: 680px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }
    .v-cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .v-cta-title {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--text-primary);
      letter-spacing: -.02em;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .v-cta-title span { color: var(--accent); }
    .v-cta-sub {
      font-size: .95rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 36px;
    }
    .v-cta-btns {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 960px) {
      .v-interior .container { grid-template-columns: 1fr; gap: 3rem; }
      .v-specs-grid { grid-template-columns: repeat(2, 1fr); }
      .v-equip-grid { grid-template-columns: repeat(2, 1fr); }
      .v-eco .container { grid-template-columns: 1fr; }
      .v-eco-main { text-align: center; align-items: center; }
      .v-hero-badge { display: none; }
    }
    @media (max-width: 600px) {
      .v-hero-content { padding: 0 1.25rem 4rem; }
      .v-hero-stats { gap: 18px; }
      .v-specs-grid { grid-template-columns: repeat(2, 1fr); }
      .v-equip-grid { grid-template-columns: repeat(2, 1fr); }
      .v-hero-scroll { display: none; }
    }

    /* ══════════════════════════════════════
       SECTION : LES 3 GAMMES DE VÉHICULES
    ══════════════════════════════════════ */
    .v-fleet {
      background: var(--bg-dark);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }
    .v-fleet::before {
      content:'';
      position:absolute; inset:0;
      background: radial-gradient(ellipse 70% 50% at 50% 0%, transparent, transparent);
      pointer-events:none;
    }
    .v-fleet .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }
    .v-fleet-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .v-fleet-header .v-section-desc {
      max-width: 640px;
      margin: 0 auto;
    }

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

    .v-veh-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      position: relative;
    }
    .v-veh-card::before {
      content:'';
      position:absolute;
      top:0; left:0; right:0;
      height:3px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      transform: scaleX(0);
      transition: transform .35s;
      z-index: 3;
    }
    .v-veh-card:hover {
      border-color:#ECEEF1;
      transform: translateY(-6px);
      box-shadow: 0 24px 52px rgba(0,0,0,.4), 0 0 28px transparent;
    }
    .v-veh-card:hover::before { transform: scaleX(1); }

    /* Carte "populaire" mise en avant */
    .v-veh-card.is-featured {
      border-color:#ECEEF1;
      box-shadow: 0 20px 44px rgba(0,0,0,.35), 0 0 24px transparent;
    }

    .v-veh-top {
      padding: 30px 26px 22px;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .v-veh-tag {
      position: absolute;
      top: 22px;
      right: 22px;
      background: var(--accent);
      color: var(--bg-dark);
      font-size: .62rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 50px;
    }
    .v-veh-icon {
      width: 58px;
      height: 58px;
      border-radius: 15px;
      background: transparent;
      border: 1px solid #ECEEF1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.5rem;
      margin-bottom: 18px;
    }
    .v-veh-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--text-primary);
      letter-spacing: -.01em;
      margin-bottom: 6px;
    }
    .v-veh-baseline {
      font-size: .82rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 14px;
    }
    .v-veh-desc {
      font-size: .88rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* Mini-stats capacité */
    .v-veh-meta {
      display: flex;
      gap: 10px;
      padding: 18px 26px;
      border-bottom: 1px solid var(--border);
    }
    .v-veh-meta-item {
      flex: 1;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .v-veh-meta-item i {
      color: var(--accent);
      font-size: .95rem;
      margin-bottom: 3px;
    }
    .v-veh-meta-val {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text-primary);
      line-height: 1;
    }
    .v-veh-meta-lbl {
      font-size: .64rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* Liste prestations */
    .v-veh-body {
      padding: 24px 26px 28px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .v-veh-body h4 {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 14px;
    }
    .v-veh-list {
      list-style: none;
      padding: 0;
      margin: 0 0 22px;
      display: flex;
      flex-direction: column;
      gap: 11px;
      flex-grow: 1;
    }
    .v-veh-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .85rem;
      color: var(--text-secondary);
      line-height: 1.45;
    }
    .v-veh-list li i {
      color: var(--accent);
      font-size: .8rem;
      margin-top: 3px;
      flex-shrink: 0;
    }
    .v-veh-usage {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: transparent;
      border: 1px solid #ECEEF1;
      border-radius: 12px;
      padding: 12px 14px;
    }
    .v-veh-usage i {
      color: var(--accent);
      font-size: .85rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .v-veh-usage p {
      font-size: .8rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }
    .v-veh-usage strong { color: var(--text-primary); }

    @media (max-width: 960px) {
      .v-fleet-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    }

    /* ══════════════════════════════════════
       SECTION : NOS SERVICES PAR GAMME (éditorial)
    ══════════════════════════════════════ */
    .v-services {
      background: var(--luxury-2);
      padding: 6rem 0;
      position: relative;
    }
    .v-services::before {
      content:''; position:absolute; top:0; left:0; right:0; height:2px;
      background: var(--luxury-separator-band); box-shadow: var(--luxury-separator-glow);
    }
    .v-services::after {
      content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
      background: var(--luxury-separator-band); box-shadow: var(--luxury-separator-glow);
    }
    .v-services .container {
      max-width: 1080px; margin: 0 auto; padding: 0 2rem;
    }
    .v-services-header { text-align: center; margin-bottom: 4rem; }
    .v-services-header .v-section-desc { max-width: 640px; margin: 0 auto; }

    .v-svc-block {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 3rem;
      align-items: start;
      padding: 3rem 0;
      border-bottom: 1px solid var(--border);
    }
    .v-svc-block:first-of-type { padding-top: 0; }
    .v-svc-block:last-of-type { border-bottom: none; padding-bottom: 0; }

    .v-svc-side {
      position: sticky;
      top: 100px;
    }
    .v-svc-icon {
      width: 60px; height: 60px; border-radius: 16px;
      background: transparent; border: 1px solid #ECEEF1;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 1.6rem; margin-bottom: 20px;
    }
    .v-svc-name {
      font-family: 'Outfit', sans-serif; font-weight: 700;
      font-size: 1.7rem; color: var(--text-primary);
      letter-spacing: -.01em; line-height: 1.1; margin-bottom: 10px;
    }
    .v-svc-tagline {
      font-size: .9rem; font-weight: 600; color: var(--accent);
      line-height: 1.4;
    }

    .v-svc-content p {
      font-size: .98rem; color: var(--text-secondary);
      line-height: 1.8; margin-bottom: 1.2rem;
    }
    .v-svc-content p:last-of-type { margin-bottom: 0; }
    .v-svc-content strong { color: var(--text-primary); font-weight: 600; }
    .v-svc-content em { font-style: normal; color: var(--accent); font-weight: 600; }

    /* ══════════════════════════════════════
       SECTION : POURQUOI CHOISIR (par gamme)
    ══════════════════════════════════════ */
    .v-why {
      background: var(--bg-dark); padding: 6rem 0; position: relative; overflow: hidden;
    }
    .v-why::before {
      content:''; position:absolute; inset:0;
      background: radial-gradient(ellipse 70% 50% at 50% 0%, transparent, transparent);
      pointer-events:none;
    }
    .v-why .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
    .v-why-header { text-align: center; margin-bottom: 3.5rem; }
    .v-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .v-why-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 18px; padding: 30px 26px;
      transition: border-color .25s, transform .25s, box-shadow .25s;
    }
    .v-why-card:hover {
      border-color:#ECEEF1; transform: translateY(-5px);
      box-shadow: 0 18px 44px rgba(0,0,0,.35);
    }
    .v-why-icon {
      width: 52px; height: 52px; border-radius: 13px;
      background: transparent; border: 1px solid #ECEEF1;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 1.3rem; margin-bottom: 18px;
    }
    .v-why-card h3 {
      font-family: 'Outfit', sans-serif; font-weight: 700;
      font-size: 1.2rem; color: var(--text-primary); margin-bottom: 14px;
    }
    .v-why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
    .v-why-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: .87rem; color: var(--text-secondary); line-height: 1.5;
    }
    .v-why-list li i { color: var(--accent); font-size: .82rem; margin-top: 3px; flex-shrink: 0; }

    /* ══════════════════════════════════════
       SECTION : CONFORT LONGUES DISTANCES
    ══════════════════════════════════════ */
    .v-longdist {
      background: var(--luxury-1); padding: 6rem 0; position: relative; overflow: hidden;
    }
    .v-longdist::before {
      content:''; position:absolute; top:0; left:0; right:0; height:2px;
      background: var(--luxury-separator-band); box-shadow: var(--luxury-separator-glow);
    }
    .v-longdist .container {
      max-width: 1200px; margin: 0 auto; padding: 0 2rem;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    }
    .v-longdist-feats { display: flex; flex-direction: column; gap: 20px; }
    .v-ld-feat { display: flex; align-items: flex-start; gap: 16px; }
    .v-ld-feat-icon {
      width: 46px; height: 46px; border-radius: 12px;
      background: transparent; border: 1px solid #ECEEF1;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 1.05rem; flex-shrink: 0;
    }
    .v-ld-feat-text h4 {
      font-family: 'Outfit', sans-serif; font-weight: 700;
      font-size: .95rem; color: var(--text-primary); margin-bottom: 4px;
    }
    .v-ld-feat-text p { font-size: .85rem; color: var(--text-muted); line-height: 1.55; }

    /* ══════════════════════════════════════
       SECTION : ENTRETIEN & SÉCURITÉ
    ══════════════════════════════════════ */
    .v-safety {
      background: var(--bg-dark); padding: 6rem 0;
    }
    .v-safety .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .v-safety-header { text-align: center; margin-bottom: 3.5rem; }
    .v-safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .v-safety-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 16px; padding: 28px 24px;
      transition: border-color .2s, transform .2s;
    }
    .v-safety-card:hover { border-color:#ECEEF1; transform: translateY(-4px); }
    .v-safety-icon {
      font-size: 1.8rem; color: var(--accent); margin-bottom: 14px; display: block;
    }
    .v-safety-card h3 {
      font-family: 'Outfit', sans-serif; font-weight: 700;
      font-size: 1.02rem; color: var(--text-primary); margin-bottom: 8px;
    }
    .v-safety-card p { font-size: .85rem; color: var(--text-secondary); line-height: 1.6; }

    /* ══════════════════════════════════════
       SECTION : TRAJETS RECOMMANDÉS
    ══════════════════════════════════════ */
    .v-routes {
      background: var(--luxury-2); padding: 6rem 0; position: relative;
    }
    .v-routes::before {
      content:''; position:absolute; top:0; left:0; right:0; height:2px;
      background: var(--luxury-separator-band); box-shadow: var(--luxury-separator-glow);
    }
    .v-routes::after {
      content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
      background: var(--luxury-separator-band); box-shadow: var(--luxury-separator-glow);
    }
    .v-routes .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .v-routes-header { text-align: center; margin-bottom: 3.5rem; }
    .v-routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .v-route-card {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 14px; padding: 22px 22px;
      display: flex; align-items: center; gap: 16px;
      transition: border-color .2s, transform .2s;
    }
    .v-route-card:hover { border-color:#ECEEF1; transform: translateY(-3px); }
    .v-route-icon {
      width: 44px; height: 44px; border-radius: 11px;
      background: transparent; border: 1px solid #ECEEF1;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent); font-size: 1.05rem; flex-shrink: 0;
    }
    .v-route-text h4 {
      font-family: 'Outfit', sans-serif; font-weight: 700;
      font-size: .95rem; color: var(--text-primary); margin-bottom: 2px;
    }
    .v-route-text p { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }

    /* ══════════════════════════════════════
       SECTION : FAQ
    ══════════════════════════════════════ */
    .v-faq {
      background: var(--bg-dark); padding: 6rem 0;
    }
    .v-faq .container { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
    .v-faq-header { text-align: center; margin-bottom: 3rem; }
    .v-faq-list { display: flex; flex-direction: column; gap: 14px; }
    .v-faq-item {
      background: var(--bg-card); border: 1px solid var(--border);
      border-radius: 14px; overflow: hidden;
      transition: border-color .2s;
    }
    .v-faq-item[open] { border-color:#ECEEF1; }
    .v-faq-item summary {
      list-style: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 20px 24px;
      font-family: 'Outfit', sans-serif; font-weight: 700;
      font-size: .98rem; color: var(--text-primary);
    }
    .v-faq-item summary::-webkit-details-marker { display: none; }
    .v-faq-item summary .v-faq-chevron {
      color: var(--accent); font-size: .9rem; flex-shrink: 0;
      transition: transform .25s;
    }
    .v-faq-item[open] summary .v-faq-chevron { transform: rotate(180deg); }
    .v-faq-answer {
      padding: 0 24px 22px;
      font-size: .9rem; color: var(--text-secondary); line-height: 1.7;
    }

    /* ══════════════════════════════════════
       RESPONSIVE — nouvelles sections
    ══════════════════════════════════════ */
    @media (max-width: 960px) {
      .v-svc-block { grid-template-columns: 1fr; gap: 1.5rem; }
      .v-svc-side { position: static; }
      .v-why-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
      .v-longdist .container { grid-template-columns: 1fr; gap: 2.5rem; }
      .v-safety-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
      .v-routes-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .v-routes-grid { grid-template-columns: 1fr; }
      .v-svc-name { font-size: 1.45rem; }
      .v-faq-item summary { font-size: .9rem; padding: 18px 20px; }
    }

  
