  :root {
    --white:   #ffffff;
    --off:     #f7f8fa;
    --light:   #eef0f4;
    --grey:    #d4d8e0;
    --grey2:   #a0a8b8;
    --dark:    #1c2233;
    --darker:  #111827;
    --muted:   #6b7488;
    --blue:    #3d6bcc;
    --blue2:   #4d7ad6;
    --blue3:   #7a9fd6;
    --blue-dim: rgba(61,107,204,0.08);
    --blue-dim2: rgba(61,107,204,0.04);
    --shadow-sm: 0 1px 4px rgba(28,34,51,0.07);
    --shadow:    0 4px 24px rgba(28,34,51,0.09);
    --shadow-lg: 0 12px 48px rgba(28,34,51,0.13);
    --font-display: 'Archivo', sans-serif;
    --font-body:    'Barlow', sans-serif;
    --border: #e4e7ed;
    --border2: #d0d4dc;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--white);
    color: var(--darker);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.01em;
    overflow-x: hidden;
  }

  /* CURSOR — only on devices with a real pointer (not touch) */
  @media (hover: hover) and (pointer: fine) {
    body { cursor: none; }
    .cursor { position: fixed; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.08s ease; }
    .cursor-ring { position: fixed; width: 32px; height: 32px; border: 1.5px solid rgba(61,107,204,0.35); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all 0.18s ease; }
    body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { transform: translate(-50%,-50%) scale(1.7); border-color: var(--blue); background: rgba(61,107,204,0.04); }
  }
  @media not all and (hover: hover) {
    .cursor, .cursor-ring { display: none; }
  }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 26px 64px; background: rgba(255,255,255,0); transition: all 0.4s ease; }
  nav.scrolled { padding: 16px 64px; background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
  .nav-logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
  .nav-logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); transition: filter 0.4s; }
  .nav-logo-text { font-family: 'Archivo', sans-serif; font-size: 40px; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; font-weight: 300; transition: color 0.4s; }
  .nav-logo-text strong { font-weight: 600; }
  nav.scrolled .nav-logo-img { filter: none; }
  nav.scrolled .nav-logo-text { color: var(--dark); }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; transition: color 0.25s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--blue); transition: width 0.3s ease; }
  .nav-links a:hover { color: var(--darker); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; padding: 10px 24px; background: var(--blue); color: white; text-decoration: none; transition: all 0.25s; }
  .nav-cta:hover { background: var(--blue2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,107,204,0.25); }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; align-items: center; padding: 0 64px;
    position: relative; overflow: hidden; background: var(--darker); width: 100%;
  }

  /* Background image */
  .hero-bg-img {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('../img/hero-bg.webp');
    background-size: cover; background-position: center 60%;
    filter: brightness(0.72) saturate(0.9);
    transform: scale(1.03);
    transition: transform 8s ease;
  }
  .hero:hover .hero-bg-img { transform: scale(1.0); }

  /* Gradient overlays */
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(100deg, rgba(8,12,25,0.80) 0%, rgba(8,12,25,0.45) 40%, rgba(8,12,25,0.10) 100%),
      linear-gradient(to top, rgba(8,12,25,0.55) 0%, transparent 45%);
  }

  /* Blue accent glow bottom-left */
  .hero-glow {
    position: absolute; left: 40%; bottom: -80px; z-index: 1;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(61,107,204,0.18) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-content { position: relative; z-index: 2; max-width: 600px; animation: fadeUp 1s ease both; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }

  .hero-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue3); font-weight: 500; margin-bottom: 28px; }
  .hero-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--blue3); }

  .hero h1 { font-family: var(--font-display); font-size: clamp(44px, 5.8vw, 74px); font-weight: 200; line-height: 1.05; letter-spacing: -0.03em; color: #ffffff; margin-bottom: 28px; }
  .hero h1 strong { font-weight: 500; color: var(--blue3); }
  .hero p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.62); margin-bottom: 48px; max-width: 460px; font-weight: 300; }

  .hero-actions { display: flex; align-items: center; gap: 20px; }
  .btn-primary { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; padding: 16px 36px; background: var(--blue); color: white; text-decoration: none; transition: all 0.25s; display: inline-block; }
  .btn-primary:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,107,204,0.4); }
  .btn-outline { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400; padding: 15px 32px; border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.75); text-decoration: none; transition: all 0.25s; display: inline-block; }
  .btn-outline:hover { border-color: white; color: white; }

  /* Stat cards — glass morphism on dark photo */
  .hero-right { position: absolute; right: 64px; top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 10px; animation: fadeUp 1.2s ease both; }
  .hero-stat-card {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 18px 24px; display: flex; align-items: center; gap: 16px; min-width: 220px;
    transition: background 0.3s;
  }
  .hero-stat-card:hover { background: rgba(255,255,255,0.13); }
  .hero-stat-icon { width: 40px; height: 40px; background: rgba(61,107,204,0.3); border: 1px solid rgba(61,107,204,0.4); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .hero-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 200; letter-spacing: -0.03em; line-height: 1; color: white; }
  .hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 3px; }

  /* Scroll indicator */
  .hero-scroll {
    position: absolute; bottom: 36px; left: 64px; z-index: 3;
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    animation: fadeUp 1.6s ease both;
  }
  .hero-scroll-line {
    width: 40px; height: 1px; background: rgba(255,255,255,0.25);
    position: relative; overflow: hidden;
  }
  .hero-scroll-line::after {
    content: ''; position: absolute; left: -100%; top: 0; width: 100%; height: 100%;
    background: var(--blue3);
    animation: scrollSlide 2s ease infinite;
  }
  @keyframes scrollSlide { 0%{left:-100%} 50%{left:0%} 100%{left:100%} }

  /* Nav stays white text on hero photo */
  nav:not(.scrolled) .nav-logo { color: white; }
  nav:not(.scrolled) .nav-logo .dot { color: var(--blue3); }
  nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.6); }
  nav:not(.scrolled) .nav-links a:hover { color: white; }
  nav:not(.scrolled) .nav-cta { background: rgba(61,107,204,0.85); border: 1px solid rgba(255,255,255,0.2); }
  .strip { background: var(--darker); padding: 0 64px; display: flex; align-items: stretch; overflow-x: auto; }
  .strip-item { display: flex; align-items: center; gap: 10px; padding: 18px 32px; border-right: 1px solid rgba(255,255,255,0.08); white-space: nowrap; flex-shrink: 0; }
  .strip-item:first-child { padding-left: 0; }
  .strip-dot { width: 5px; height: 5px; background: var(--blue3); border-radius: 50%; flex-shrink: 0; }
  .strip-text { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 400; }

  /* SECTIONS */
  section { padding: 96px 64px; }
  .section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 16px; }
  .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); }
  .section-title { font-family: var(--font-display); font-size: clamp(30px, 3.5vw, 46px); font-weight: 200; line-height: 1.1; letter-spacing: -0.025em; color: var(--darker); margin-bottom: 56px; }
  .section-title strong { font-weight: 500; }

  /* SEARCH */
  .search-section { padding: 56px 64px 0; background: var(--white); max-width: 100%; overflow: hidden; }
  .search-bar { background: var(--white); border: 1.5px solid var(--border2); box-shadow: var(--shadow-sm); display: flex; align-items: stretch; margin-bottom: 24px; width: 100%; overflow: hidden; }
  .search-field { flex: 1; min-width: 0; display: flex; align-items: center; gap: 12px; padding: 0 24px; border-right: 1px solid var(--border); overflow: hidden; }
  .search-field input { background: none; border: none; outline: none; color: var(--darker); font-family: var(--font-body); font-size: 14px; font-weight: 300; width: 100%; min-width: 0; padding: 18px 0; }
  .search-field input::placeholder { color: var(--grey2); }
  .search-field svg { color: var(--grey2); flex-shrink: 0; }
  .filter-select { background: none; border: none; border-right: 1px solid var(--border); outline: none; color: var(--muted); font-family: var(--font-body); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; padding: 0 20px; cursor: pointer; appearance: none; transition: color 0.2s; flex-shrink: 0; }
  .filter-select:hover { color: var(--darker); }
  option { background: white; color: var(--darker); }
  .search-btn { background: var(--blue); border: none; cursor: pointer; padding: 0 32px; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: white; transition: background 0.25s; white-space: nowrap; flex-shrink: 0; }
  .search-btn:hover { background: var(--blue2); }

  .filter-chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
  .chip { font-size: 11px; padding: 6px 14px; border: 1.5px solid var(--border); color: var(--muted); cursor: pointer; transition: all 0.2s; background: white; font-weight: 400; }
  .chip:hover { border-color: var(--blue); color: var(--blue); }
  .chip.active { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }

  /* VEHICLES */
  .vehicles-section { padding-top: 32px; max-width: 100%; overflow: hidden; }
  .vehicles-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
  .vehicles-count { font-size: 13px; color: var(--muted); }
  .vehicles-count span { color: var(--darker); font-weight: 400; }
  .sort-select { background: white; border: 1.5px solid var(--border); outline: none; color: var(--muted); font-family: var(--font-body); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 9px 18px; cursor: pointer; appearance: none; }
  .vehicles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  /* CARD */
  .vehicle-card { background: white; border: 1px solid var(--border); transition: all 0.35s ease; cursor: pointer; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
  .vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--grey); }
  .vehicle-card:hover .card-img img { transform: scale(1.04); }
  .card-img { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--off); }
  .card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
  .card-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, var(--off) 0%, var(--light) 100%); }
  .car-silhouette { font-size: 60px; opacity: 0.09; }
  .card-badge { position: absolute; top: 14px; left: 14px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; padding: 5px 12px; }
  .card-badge.verified { background: var(--blue); color: white; }
  .card-badge.available { background: white; color: var(--darker); border: 1px solid var(--border); }
  .card-badge.sold {
    background: var(--darker); color: white; border: none;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 12px 6px 10px;
    font-weight: 600; letter-spacing: 0.16em;
  }
  .card-badge.sold svg { width: 11px; height: 11px; flex-shrink: 0; }

  /* Sold overlay — diagonal band across the card image */
  .card-img.is-sold::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(17,24,39,0.45); z-index: 1;
    pointer-events: none;
  }
  .card-img.is-sold::after {
    content: 'VENDU';
    position: absolute; top: 50%; left: -20%; right: -20%;
    transform: translateY(-50%) rotate(-8deg);
    background: var(--darker); color: white;
    font-family: var(--font-display); font-size: 22px; font-weight: 500;
    letter-spacing: 0.5em; text-align: center;
    padding: 10px 0; z-index: 2;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    pointer-events: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .card-img.is-sold img { filter: grayscale(0.6) brightness(0.85); }
  .vehicle-card.sold { opacity: 0.88; }
  .vehicle-card.sold:hover { transform: none; }
  .vehicle-card.sold .card-hover { display: none; }
  .vehicle-card.sold .card-price { color: var(--muted); text-decoration: line-through; text-decoration-thickness: 1px; }
  .card-hover { position: absolute; inset: 0; background: rgba(17,24,39,0.55); display: flex; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: opacity 0.35s; }
  .vehicle-card:hover .card-hover { opacity: 1; }
  .card-hover-btn { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 10px 18px; background: white; color: var(--darker); cursor: pointer; border: none; font-family: var(--font-body); font-weight: 500; transition: all 0.2s; }
  .card-hover-btn:hover { background: var(--blue); color: white; }
  .card-hover-btn.blue { background: var(--blue); color: white; }
  .card-hover-btn.blue:hover { background: var(--blue2); }
  .card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
  .card-brand { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 5px; }
  .card-title { font-family: var(--font-display); font-size: 19px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 12px; color: var(--darker); }
  .card-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
  .spec { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--muted); }
  .spec-dot { width: 3px; height: 3px; background: var(--blue3); border-radius: 50%; flex-shrink: 0; }
  .card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; }
  .card-price { font-family: var(--font-display); font-size: 24px; font-weight: 300; letter-spacing: -0.02em; color: var(--darker); }
  .card-price-sub { font-size: 10px; color: var(--muted); margin-top: 1px; }
  .cv-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; font-weight: 500; }
  .cv-dot { width: 5px; height: 5px; border-radius: 50%; background: #16a34a; flex-shrink: 0; }

  /* MODAL */
  .modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(17,24,39,0.6); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal { background: white; width: 92%; max-width: 960px; max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg); transform: translateY(28px); transition: transform 0.35s ease; border: 1px solid var(--border); }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-close { position: fixed; top: 24px; right: 24px; z-index: 300; background: white; border: 1.5px solid var(--border); color: var(--muted); cursor: pointer; width: 40px; height: 40px; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; box-shadow: var(--shadow); }
  .modal-close:hover { border-color: var(--blue); color: var(--blue); }
  .modal-grid { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 480px; }
  .modal-gallery { background: var(--off); overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .modal-gallery img { width: 100%; height: 100%; object-fit: cover; }
  .modal-info { padding: 36px; position: relative; }
  .modal-brand { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); font-weight: 500; margin-bottom: 8px; }
  .modal-title { font-family: var(--font-display); font-size: 30px; font-weight: 300; letter-spacing: -0.02em; margin-bottom: 20px; color: var(--darker); }
  .modal-price-box { background: var(--blue-dim); border: 1px solid rgba(61,107,204,0.15); padding: 16px 20px; margin-bottom: 22px; display: flex; align-items: baseline; gap: 10px; }
  .modal-price { font-family: var(--font-display); font-size: 34px; font-weight: 300; color: var(--blue); letter-spacing: -0.03em; }
  .modal-price-note { font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
  .modal-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-bottom: 20px; background: var(--border); border: 1px solid var(--border); }
  .modal-spec { background: white; padding: 12px 16px; }
  .modal-spec-label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
  .modal-spec-value { font-size: 13px; font-weight: 400; color: var(--darker); }
  .modal-cv { background: #f0fdf4; border: 1px solid #bbf7d0; padding: 14px 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
  .cv-score { font-family: var(--font-display); font-size: 26px; color: #16a34a; font-weight: 300; }
  .cv-info { flex: 1; }
  .cv-title { font-size: 12px; font-weight: 400; color: var(--darker); margin-bottom: 2px; }
  .cv-subtitle { font-size: 10px; color: var(--muted); }
  .cv-btn { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; padding: 8px 16px; border: 1.5px solid #16a34a; color: #16a34a; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
  .cv-btn:hover { background: #16a34a; color: white; }
  .modal-cta { display: flex; gap: 8px; }
  .modal-cta-btn { flex: 1; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; padding: 13px 18px; border: none; cursor: pointer; font-family: var(--font-body); transition: all 0.25s; text-align: center; text-decoration: none; display: block; }
  .modal-cta-btn.blue { background: var(--blue); color: white; }
  .modal-cta-btn.blue:hover { background: var(--blue2); }
  .modal-cta-btn.outline { background: none; border: 1.5px solid var(--border2); color: var(--muted); }
  .modal-cta-btn.outline:hover { border-color: var(--blue); color: var(--blue); }

  /* HOW IT WORKS */
  .how-section { background: var(--darker); }
  .how-section .section-label { color: var(--blue3); }
  .how-section .section-label::before { background: var(--blue3); }
  .how-section .section-title { color: white; }
  .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
  .step { background: var(--darker); padding: 36px 28px; position: relative; overflow: hidden; transition: background 0.3s; }
  .step:hover { background: #1e2a3d; }
  .step-num { font-family: var(--font-display); font-size: 56px; font-weight: 200; color: rgba(61,107,204,0.15); position: absolute; top: 12px; right: 16px; line-height: 1; }
  .step-line { width: 28px; height: 2px; background: var(--blue3); margin-bottom: 20px; }
  .step-title { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: white; margin-bottom: 12px; }
  .step-desc { font-size: 12px; line-height: 1.85; color: rgba(255,255,255,0.45); font-weight: 300; }

  /* SELL */
  .sell-section { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .sell-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
  .sell-form { display: flex; flex-direction: column; gap: 2px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .form-field { display: flex; flex-direction: column; }
  .form-field label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); padding: 10px 14px 6px; background: var(--light); border: 1px solid var(--border); border-bottom: none; font-weight: 500; }
  .form-field input { background: white; border: 1px solid var(--border); border-top: none; outline: none; color: var(--darker); font-family: var(--font-body); font-size: 13px; font-weight: 300; padding: 10px 14px 14px; transition: border-color 0.25s; }
  .form-field input:focus { border-color: var(--blue); }
  .form-field input::placeholder { color: var(--grey2); }
  .upload-zone { background: white; border: 1.5px dashed var(--border2); padding: 28px; text-align: center; cursor: pointer; transition: all 0.25s; }
  .upload-zone:hover { border-color: var(--blue); background: var(--blue-dim2); }
  .upload-icon { font-size: 22px; opacity: 0.3; margin-bottom: 8px; }
  .upload-text { font-size: 12px; color: var(--muted); line-height: 1.6; }
  .upload-text strong { color: var(--blue); display: block; font-weight: 500; font-size: 13px; margin-bottom: 2px; }
  .form-submit { background: var(--blue); border: none; cursor: pointer; padding: 16px; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: white; transition: all 0.25s; }
  .form-submit:hover { background: var(--blue2); box-shadow: 0 6px 20px rgba(61,107,204,0.25); }

  /* PARTNERS */
  .partners-strip { padding: 36px 64px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 48px; background: white; }
  .partners-label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--grey2); white-space: nowrap; font-weight: 500; }
  .partners-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
  .partner-logo { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); font-weight: 500; transition: color 0.25s; text-decoration: none; }
  .partner-logo:hover { color: var(--blue); }

  /* FOOTER */
  footer { background: var(--darker); padding: 64px 64px 28px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
  .footer-brand { margin-bottom: 14px; }
  .footer-brand { display: flex; align-items: center; gap: 10px; }
  .footer-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); }
  .footer-logo-text { font-family: 'Archivo', sans-serif; font-size: 40px; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; font-weight: 300; }
  .footer-logo-text strong { font-weight: 600; }
  .footer-desc { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.38); font-weight: 300; }
  .footer-col h4 { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue3); margin-bottom: 18px; font-weight: 500; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { font-size: 12px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.25s; font-weight: 300; }
  .footer-col ul a:hover { color: white; }
  .footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 11px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.25s; }
  .footer-legal a:hover { color: white; }

  /* ANIM */
  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* NOTIF */
  .notif { position: fixed; bottom: 28px; right: 28px; z-index: 300; background: white; border: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 16px 22px; max-width: 300px; transform: translateY(70px); opacity: 0; transition: all 0.35s ease; border-left: 3px solid var(--blue); }
  .notif.show { transform: translateY(0); opacity: 1; }
  .notif-title { font-size: 12px; font-weight: 500; color: var(--blue); margin-bottom: 4px; }
  .notif-text { font-size: 12px; color: var(--muted); line-height: 1.5; }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--off); }
  ::-webkit-scrollbar-thumb { background: var(--grey); }
  ::-webkit-scrollbar-thumb:hover { background: var(--blue); }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    nav, section, .search-section, .partners-strip, footer { padding-left: 32px; padding-right: 32px; }
    nav.scrolled { padding-left: 32px; padding-right: 32px; }
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-right { display: none; }
    .hero::before, .hero-grid-bg, .hero-glow { display: none; }
    .modal-grid { grid-template-columns: 1fr; }
    .sell-inner { grid-template-columns: 1fr; gap: 40px; }
  }
  /* BURGER */
  .nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; position: relative; z-index: 201; }
  .nav-burger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: all 0.3s ease; }
  nav:not(.scrolled) .nav-burger span { background: #fff; }
  nav.menu-open { z-index: 200; }
  .nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Nav 2 lignes : logo ligne 1, menu + cta ligne 2 */
  @media (max-width: 990px) {
    nav { flex-wrap: wrap; padding: 14px 24px; gap: 6px; }
    nav.scrolled { padding: 10px 24px; }
    .nav-logo { order: 1; width: 100%; }
    .nav-logo-img { height: clamp(18px, 3.5vw, 28px); }
    .nav-logo-text { font-size: clamp(16px, 3vw, 24px); }
    .nav-links { order: 2; gap: 20px; }
    .nav-cta { order: 3; margin-left: auto; font-size: 10px; padding: 8px 16px; }
    .nav-burger { order: 4; }
  }

  /* Burger : liens masqués, burger visible */
  @media (max-width: 560px) {
    nav { padding: 10px 16px; gap: 4px; }
    nav.scrolled { padding: 8px 16px; }
    nav.menu-open { backdrop-filter: none; }
    .nav-logo-img { height: clamp(16px, 5vw, 22px); }
    .nav-logo-text { font-size: clamp(12px, 4vw, 18px); letter-spacing: 0.06em; }
    .nav-burger { display: block; }
    .nav-links { display: none; }
    .nav-cta { font-size: 9px; padding: 7px 12px; }

    /* Menu ouvert */
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--darker); align-items: center; justify-content: center; gap: 36px; z-index: 200; }
    .nav-links.open a { color: #fff; font-size: 18px; letter-spacing: 0.08em; }
    .nav-links.open a:hover { color: var(--blue3); }
    .nav-burger.active span { background: #fff; }
    .nav-cta.open { position: fixed; bottom: 40px; left: 20px; right: 20px; text-align: center; z-index: 201; padding: 14px; font-size: 12px; }
  }
  @media (max-width: 720px) {
    .vehicles-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* MODAL CONTACT FORM */
  .modal-contact-form { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 20px; }
  .modal-contact-form h4 { font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--darker); margin-bottom: 14px; }
  .modal-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .modal-contact-form .form-field { display: flex; flex-direction: column; }
  .modal-contact-form .form-field label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); padding: 8px 12px 4px; background: var(--light); border: 1px solid var(--border); border-bottom: none; font-weight: 500; }
  .modal-contact-form .form-field input,
  .modal-contact-form .form-field textarea { background: white; border: 1px solid var(--border); border-top: none; outline: none; color: var(--darker); font-family: var(--font-body); font-size: 12px; font-weight: 300; padding: 8px 12px 10px; transition: border-color 0.25s; resize: vertical; }
  .modal-contact-form .form-field input:focus,
  .modal-contact-form .form-field textarea:focus { border-color: var(--blue); }
  .modal-contact-form .form-field input::placeholder,
  .modal-contact-form .form-field textarea::placeholder { color: var(--grey2); }
  .modal-contact-form .form-submit { width: 100%; margin-top: 8px; }
  .modal-sold-msg { text-align: center; padding: 20px; margin-top: 20px; background: var(--off); border: 1px solid var(--border); }
  .modal-sold-msg p { font-size: 13px; color: var(--muted); font-weight: 400; }
  .modal-sold-msg strong { color: var(--darker); }

  /* FORM STATUS */
  .form-status { margin-top: 8px; font-size: 12px; text-align: center; min-height: 20px; }
  .form-status.success { color: #16a34a; }
  .form-status.error { color: #dc2626; }
  .form-status.loading { color: var(--muted); }

  /* SELL FORM STATUS */
  .sell-form .form-status { text-align: left; }
  .recaptcha-notice { font-size: 11px; color: var(--muted); text-align: center; margin-top: 8px; line-height: 1.5; }
  .recaptcha-notice a { color: var(--muted); text-decoration: underline; }
  .grecaptcha-badge { visibility: hidden !important; }

  @media (max-width: 720px) {
    .modal-contact-form .form-row { grid-template-columns: 1fr; }
  }
  .nav-logo-text, .footer-logo-text { font-size: 35px; text-transform: none; line-height: 1; margin-bottom: -4px; margin-left: 10px; }
  .nav-logo, .footer-brand { align-items: flex-end; }

