/* ═══════════════════════════════════════
   AUTOHAUS BASSIL GMBH — MAIN CSS v1.2
═══════════════════════════════════════ */

:root {
  --navy:    #0D1B2A;
  --navy2:   #162236;
  --blue:    #1C4B82;
  --blue2:   #2563A8;
  --red:     #E8401C;
  --cream:   #F2EFE9;
  --stone:   #E6E1D9;
  --light:   #EDF1F7;
  --white:   #FAFAF8;
  --muted:   #6B6560;
  --text:    #1A1A1A;
  --border:  #D4CFC8;
  --green:   #15803D;
  --wa:      #25D366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
p { line-height: 1.75; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  letter-spacing: -.02em;
  color: var(--navy);
  line-height: 1.1;
  font-weight: 400;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 64px; }
.section { padding: 92px 0; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--stone  { background: var(--stone); }
.section--light  { background: var(--light); }
.section--navy   { background: var(--navy); }

.ab-tag {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.ab-tag::before { content:''; width:22px; height:2px; background:var(--blue); border-radius:1px; }

h2.heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.2vw, 48px);
  color: var(--navy); line-height: 1.08;
}
h2.heading em { font-style: italic; }

.sub-text { font-size: 15px; line-height: 1.78; color: var(--muted); margin-top: 12px; max-width: 520px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  padding: 13px 28px; border-radius: 5px; transition: all .2s; cursor: pointer;
  white-space: nowrap;
}
.btn--red   { background: var(--red);  color: white; border: 2px solid var(--red); }
.btn--red:hover { background: #c93516; border-color:#c93516; color: white; transform: translateY(-1px); }
.btn--blue  { background: var(--blue); color: white; border: 2px solid var(--blue); }
.btn--blue:hover { background: var(--blue2); border-color:var(--blue2); color: white; }
.btn--wa    { background: var(--wa);   color: white; border: 2px solid var(--wa); }
.btn--wa:hover { background: #1ebe5a; border-color:#1ebe5a; color: white; }
.btn--outline { background: none; color: var(--navy); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--outline-white { background: rgba(255,255,255,.1); color: white; border: 2px solid rgba(255,255,255,.3); }
.btn--outline-white:hover { background: rgba(255,255,255,.18); color: white; border-color:rgba(255,255,255,.5); }

/* ─── TOPBANNER ─── */
#ab-banner {
  background: var(--navy); padding: 11px 60px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.75); position: relative; line-height: 1.4;
}
#ab-banner strong { color: #FF7A5A; font-weight: 600; }
#ab-banner .close-banner {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.4);
  font-size: 18px; cursor: pointer; line-height: 1; padding: 4px 6px;
}

/* ─── CONTACT BAR ─── */
.contact-bar {
  background: var(--navy2); padding: 8px 64px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; gap: 12px;
}
.contact-bar__left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.contact-bar a { color: rgba(255,255,255,.5); display: inline-flex; align-items: center; gap: 5px; }
.contact-bar a:hover { color: white; }
.contact-bar__hours { font-size: 12px; color: rgba(255,255,255,.38); white-space: nowrap; }

/* ─── HEADER / NAV ─── */
.site-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 300;
  box-shadow: 0 1px 8px rgba(0,0,0,.06); transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.11); }
.header-inner { padding: 0 64px; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }

.site-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 38px; height: 38px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 20px; height: 20px; fill: white; }
.logo-name { font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--navy); line-height: 1.1; letter-spacing: -.02em; }
.logo-sub { font-family: 'DM Sans', sans-serif; display: block; font-size: 9.5px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.main-nav { display: flex; align-items: center; height: 68px; flex: 1; justify-content: center; }
.main-nav a {
  font-size: 13.5px; font-weight: 400; color: var(--text); padding: 0 15px; height: 100%;
  display: flex; align-items: center; border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s; white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 500; }

.header-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.header-actions .btn { font-size: 13px; padding: 9px 18px; border-radius: 4px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; background: none; border: none; cursor: pointer; width: 40px; height: 40px; padding: 6px; flex-shrink: 0;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; display: block; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero { background: var(--navy); display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; overflow: hidden; }
.hero__left { padding: 96px 72px 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 22px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }

.hero__title { font-family: 'DM Serif Display', serif; font-size: clamp(38px, 5vw, 68px); line-height: 1.05; color: white; letter-spacing: -.02em; margin-bottom: 18px; }
.hero__title em { font-style: italic; color: #91B9E8; }
.hero__sub { font-size: 15.5px; line-height: 1.8; color: rgba(255,255,255,.55); max-width: 460px; margin-bottom: 24px; }
.hero__checks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 34px; }
.hero__check { font-size: 13.5px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 9px; }
.hero__check::before { content:'✓'; color: #4ADE80; font-weight: 700; font-size: 14px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.hero__stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; }
.stat { padding-right: 32px; margin-right: 32px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: none; }
.stat__val { font-family: 'DM Serif Display', serif; font-size: 32px; color: white; line-height: 1; }
.stat__unit { color: var(--red); }
.stat__lbl { font-size: 11.5px; color: rgba(255,255,255,.38); margin-top: 4px; }

.hero__right { position: relative; overflow: hidden; }
.hero__right img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(.9); }
.hero__right::after { content:''; position: absolute; inset: 0; background: linear-gradient(to right, var(--navy) 0%, transparent 40%); }
.hero__badge { position: absolute; bottom: 28px; right: 28px; z-index: 2; background: rgba(250,250,248,.97); backdrop-filter: blur(8px); border-radius: 8px; padding: 15px 20px; box-shadow: 0 8px 32px rgba(0,0,0,.22); }
.badge__label { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.badge__val { font-family: 'DM Serif Display', serif; font-size: 16px; color: var(--navy); margin-top: 2px; }
.badge__avail { font-size: 11px; color: var(--green); font-weight: 500; margin-top: 3px; }

/* ─── SEARCH BAR ─── */
.searchbar { background: var(--navy2); padding: 22px 64px; display: flex; gap: 12px; align-items: flex-end; }
.search-group { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.search-group label { font-size: 9.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.search-group select, .search-group input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: white;
  padding: 10px 12px; border-radius: 4px; font-family: 'DM Sans', sans-serif; font-size: 13.5px;
  font-weight: 300; outline: none; transition: border-color .2s; appearance: none; min-width: 0;
}
.search-group select option { background: #1a2d45; color: white; }
.search-group select:focus, .search-group input:focus { border-color: var(--blue2); }
.search-btn {
  background: var(--red); color: white; border: none; padding: 11px 28px; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 7px; white-space: nowrap; transition: background .2s; cursor: pointer; flex-shrink: 0;
}
.search-btn:hover { background: #c93516; }
.search-btn svg { width: 15px; height: 15px; }

/* ─── TRUST BAND ─── */
.trust-band { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 64px; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 24px 0; border-right: 1px solid var(--border); padding-right: 28px; margin-right: 28px; }
.trust-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.trust-icon { width: 42px; height: 42px; flex-shrink: 0; background: #EBF2FB; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.trust-icon svg { width: 21px; height: 21px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.trust-item h4 { font-size: 13px; font-weight: 600; color: var(--navy); font-family: 'DM Sans', sans-serif; }
.trust-item p { font-size: 12px; color: var(--muted); margin-top: 2px; line-height: 1.4; }

/* ─── SECTION HEADER + FILTERS ─── */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 20px; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.ftab { font-size: 12px; font-weight: 500; color: var(--muted); background: var(--white); border: 1.5px solid var(--border); padding: 7px 15px; border-radius: 100px; cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif; }
.ftab:hover { border-color: var(--blue); color: var(--blue); }
.ftab.active { background: var(--blue); border-color: var(--blue); color: white; }

/* ─── CAR CARDS ─── */
.cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.car-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: box-shadow .3s, transform .3s; display: flex; flex-direction: column; }
.car-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.1); transform: translateY(-3px); }
.car-img { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--stone); flex-shrink: 0; }
.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.car-card:hover .car-img img { transform: scale(1.04); }
.car-badge { position: absolute; top: 11px; left: 11px; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; border-radius: 4px; }
.badge--occ { background: var(--navy); color: white; }
.badge--avail { background: var(--green); color: white; }
.badge--hot { background: var(--red); color: white; }
.car-km { position: absolute; top: 11px; right: 11px; background: rgba(0,0,0,.62); color: white; font-size: 10.5px; padding: 3px 9px; border-radius: 4px; font-weight: 500; }
.car-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.car-brand { font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; }
.car-name { font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.car-specs { display: flex; gap: 10px; flex-wrap: wrap; padding: 10px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.spec { font-size: 12px; color: var(--muted); font-weight: 400; }
.car-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.car-price-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.car-price { font-family: 'DM Serif Display', serif; font-size: 23px; color: var(--navy); line-height: 1; margin-top: 2px; }
.car-warranty { font-size: 10.5px; color: var(--muted); margin-top: 3px; }
.car-avail { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 3px; }
.car-cta { font-size: 12.5px; font-weight: 600; color: var(--blue); background: #EBF2FB; padding: 9px 17px; border-radius: 5px; text-decoration: none; transition: all .2s; white-space: nowrap; flex-shrink: 0; }
.car-cta:hover { background: var(--blue); color: white; }
.more-center { text-align: center; margin-top: 44px; }

/* ─── BRANDS ─── */
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-top: 48px; }
.brand-cell { background: var(--white); padding: 22px; display: flex; align-items: center; gap: 13px; transition: background .2s; cursor: pointer; }
.brand-cell:hover { background: #EEF3FB; }
.brand-emoji { font-size: 22px; flex-shrink: 0; }
.brand-name { font-family: 'DM Serif Display', serif; font-size: 16px; color: var(--navy); }
.brand-count { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 32px 28px; transition: box-shadow .3s, transform .3s; }
.service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.svc-num { font-family: 'DM Serif Display', serif; font-size: 13px; color: var(--blue); margin-bottom: 12px; }
.svc-icon { font-size: 28px; margin-bottom: 11px; display: block; }
.service-card h3 { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--navy); margin-bottom: 9px; }
.service-card p { font-size: 14px; line-height: 1.72; color: var(--muted); }

/* ─── STEPS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-top: 52px; }
.step { background: var(--white); padding: 38px 30px; position: relative; transition: background .3s; overflow: hidden; }
.step:hover { background: #EEF3FB; }
.step-num { font-family: 'DM Serif Display', serif; font-size: 12.5px; color: var(--blue); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.step-num::after { content:''; flex:1; height:1px; background:var(--border); }
.step-icon-wrap { width: 48px; height: 48px; background: #EBF2FB; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.step-icon-wrap svg { width: 23px; height: 23px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.step h3 { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 13.5px; line-height: 1.7; color: var(--muted); }
.step-line { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.step:hover .step-line { transform: scaleX(1); }

/* ─── TESTIMONIALS ─── */
.testi-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.testi-rating { text-align: right; }
.rating-num { font-family: 'DM Serif Display', serif; font-size: 50px; color: var(--navy); line-height: 1; }
.rating-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; }
.rating-lbl { font-size: 12px; color: var(--muted); margin-top: 3px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px 24px; }
.testi-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.testi-stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.testi-flag { font-size: 18px; }
.testi-quote { font-family: 'DM Serif Display', serif; font-style: italic; font-size: 15px; line-height: 1.65; color: var(--navy); margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-ava { width: 40px; height: 40px; border-radius: 50%; background: #EBF2FB; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 16px; color: var(--blue); flex-shrink: 0; }
.testi-name { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.testi-car { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── PARTNERS ─── */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.partner-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px 20px; text-align: center; transition: box-shadow .2s; }
.partner-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.partner-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 5px; }
.partner-role { font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.partner-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── CTA SECTION ─── */
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-family: 'DM Serif Display', serif; font-size: clamp(26px, 3.2vw, 44px); color: white; margin-bottom: 14px; line-height: 1.1; }
.cta-inner h2 em { font-style: italic; color: #91B9E8; }
.cta-inner p { font-size: 15px; color: rgba(255,255,255,.52); line-height: 1.75; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.07); }
.footer-main { padding: 64px 64px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo-link { font-family: 'DM Serif Display', serif; font-size: 20px; color: white; display: block; margin-bottom: 4px; }
.footer-logo-sub { font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 240px; margin-bottom: 16px; }
.footer-address { font-size: 12.5px; color: rgba(255,255,255,.42); line-height: 1.9; margin-bottom: 18px; }
.footer-address a { color: rgba(255,255,255,.42); }
.footer-address a:hover { color: white; }
.footer-socials { display: flex; gap: 8px; }
.soc { width: 32px; height: 32px; border-radius: 6px; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: 12px; font-weight: 600; transition: all .2s; }
.soc:hover { border-color: rgba(255,255,255,.4); color: white; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-col a:hover { color: white; }
.footer-legal-box { margin-top: 20px; padding: 14px; background: rgba(255,255,255,.04); border-radius: 6px; border: 1px solid rgba(255,255,255,.07); }
.footer-legal-box .lbl { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 6px; }
.footer-legal-box p { font-size: 12px; color: rgba(255,255,255,.44); line-height: 1.75; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 16px 64px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.24); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11.5px; color: rgba(255,255,255,.24); }
.footer-links a:hover { color: rgba(255,255,255,.6); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; width: 54px; height: 54px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ─── SINGLE VEHICLE ─── */
.vehicle-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 70vh; }
.vehicle-gallery { position: relative; overflow: hidden; }
.vehicle-gallery img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-info { background: var(--cream); padding: 56px 48px; }
.vehicle-price-block { margin: 22px 0; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.vehicle-price { font-family: 'DM Serif Display', serif; font-size: 38px; color: var(--navy); line-height: 1; }
.vehicle-specs-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.spec-row { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text); }
.spec-row strong { color: var(--navy); font-weight: 600; }
.vehicle-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 38px; }
.contact-form-card h2 { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--navy); margin-bottom: 5px; }
.contact-form-card .sub-text { margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 11.5px; font-weight: 600; color: var(--navy); letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border); border-radius: 5px; padding: 10px 13px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400; color: var(--text);
  outline: none; transition: border-color .2s; background: var(--cream); appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: 6px; justify-content: center; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.contact-info h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; background: #EBF2FB; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 19px; height: 19px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.ci-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.ci-val { font-size: 14px; color: var(--navy); font-weight: 400; }
.ci-val a { color: var(--navy); }
.ci-val a:hover { color: var(--blue); }

/* ─── CGV PAGE ─── */
.cgv-page { background: var(--cream); }
.cgv-header { background: var(--navy); padding: 56px 64px 44px; }
.cgv-header .ab-tag { color: #91B9E8; }
.cgv-header .ab-tag::before { background: #91B9E8; }
.cgv-header h1 { color: white; font-size: clamp(28px,3.4vw,44px); margin-bottom: 8px; }
.cgv-header p { color: rgba(255,255,255,.55); font-size: 14px; max-width: 560px; }

.cgv-summary {
  background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--blue);
  border-radius: 8px; padding: 26px 30px; margin: -28px 64px 50px;
  position: relative; z-index: 2; box-shadow: 0 8px 28px rgba(0,0,0,.08);
}
.cgv-summary h3 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; font-family: 'DM Sans',sans-serif; }
.cgv-summary ul { display: flex; flex-direction: column; gap: 9px; }
.cgv-summary li { font-size: 14px; color: var(--text); padding-left: 18px; position: relative; line-height: 1.6; }
.cgv-summary li::before { content:'›'; position:absolute; left:0; color: var(--blue); font-weight: 700; }

.cgv-body { max-width: 900px; margin: 0 auto; padding: 0 64px 80px; }
.cgv-article { margin-bottom: 36px; }
.cgv-article-title {
  background: var(--navy); color: white; font-family: 'DM Sans', sans-serif;
  font-size: 14.5px; font-weight: 600; padding: 14px 22px; border-radius: 6px;
  margin-bottom: 20px;
}
.cgv-article p { font-size: 14.5px; line-height: 1.85; color: var(--text); margin-bottom: 14px; }
.cgv-article p:last-child { margin-bottom: 0; }
.cgv-article ul.cgv-list { margin: 12px 0 16px; display: flex; flex-direction: column; gap: 7px; }
.cgv-article ul.cgv-list li { font-size: 14.5px; line-height: 1.7; color: var(--text); padding-left: 20px; position: relative; }
.cgv-article ul.cgv-list li::before { content:'•'; position:absolute; left:4px; color: var(--blue); font-weight:700; }

.cgv-note {
  background: var(--light); border-radius: 6px; padding: 14px 18px;
  font-size: 13.5px; color: var(--muted); font-style: italic; margin: 14px 0;
  border-left: 3px solid var(--blue);
}

.cgv-table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: 13.5px; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.cgv-table thead th {
  background: var(--navy); color: white; text-align: left;
  padding: 11px 16px; font-weight: 600; font-size: 12.5px;
}
.cgv-table tbody td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text); background: var(--white); vertical-align: top; }
.cgv-table tbody tr:last-child td { border-bottom: none; }
.cgv-table tbody tr:nth-child(even) td { background: var(--cream); }

.cgv-steps { display: flex; flex-direction: column; gap: 18px; margin: 16px 0 20px; }
.cgv-step { display: flex; gap: 18px; align-items: flex-start; }
.cgv-step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: white;
  font-family: 'DM Serif Display', serif; font-size: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cgv-step-content h4 { font-size: 14.5px; font-weight: 600; color: var(--navy); font-family: 'DM Sans',sans-serif; margin-bottom: 4px; }
.cgv-step-content p { font-size: 13.5px; color: var(--muted); margin: 0; }

.cgv-footer-box {
  background: var(--navy); border-radius: 8px; padding: 28px 32px; margin-top: 50px; text-align: center;
}
.cgv-footer-box .lbl { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: #91B9E8; margin-bottom: 10px; font-weight: 600; }
.cgv-footer-box strong { color: white; font-size: 16px; display: block; margin-bottom: 6px; font-family: 'DM Serif Display', serif; }
.cgv-footer-box p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.7; }
.cgv-footer-box a { color: #91B9E8; }

.cgv-toc { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px 28px; margin-bottom: 40px; }
.cgv-toc h3 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; font-family: 'DM Sans',sans-serif; }
.cgv-toc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.cgv-toc a { font-size: 13.5px; color: var(--text); display: flex; gap: 8px; }
.cgv-toc a:hover { color: var(--blue); }
.cgv-toc a span { color: var(--blue); font-weight: 600; min-width: 18px; }

/* ═══════════════════════════════════════
   MEDIA SPLIT (texte + image, pages internes)
═══════════════════════════════════════ */
.media-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.media-split--reverse .media-split__media { order: -1; }
.media-split__media {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/5;
  background: var(--stone);
}
.media-split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  text-align: center; padding: 32px;
  position: relative; overflow: hidden;
}
.media-ph::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,.08) 0%, transparent 45%);
}
.media-ph-icon {
  width: 64px !important; height: 64px !important; min-width: 64px; min-height: 64px;
  flex: 0 0 64px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.media-ph-icon svg {
  width: 26px !important; height: 26px !important;
  max-width: 26px; max-height: 26px;
  display: block;
  stroke: #91B9E8; fill: none; stroke-width: 1.5;
}
.media-ph span {
  position: relative; z-index: 1;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-family: 'DM Sans', sans-serif;
  max-width: 220px; line-height: 1.7;
}

.media-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.media-grid__item { border-radius: 10px; overflow: hidden; background: var(--stone); aspect-ratio: 4/3; }
.media-grid__item--tall { aspect-ratio: 4/5; grid-row: span 2; }
.media-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.doc-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0 20px; }
.doc-col { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.doc-col__head { font-size: 13px; font-weight: 600; padding: 13px 18px; color: white; }
.doc-col__head--navy { background: var(--navy); }
.doc-col__head--blue { background: var(--blue); }
.doc-col ul.cgv-list { padding: 16px 20px; margin: 0; }

.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.08); border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.stat-band__item { background: var(--navy2); padding: 36px 20px; text-align: center; }
.stat-band__val { font-family: 'DM Serif Display', serif; font-size: 38px; color: white; line-height: 1; }
.stat-band__val span { color: var(--red); }
.stat-band__lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 8px; }

.inner-hero { min-height: 56vh; }
.inner-hero .hero__left { padding: 80px 64px 64px; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--stone); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .header-inner { padding: 0 40px; }
  .contact-bar { padding: 8px 40px; }
  .searchbar { padding: 20px 40px; }
  .trust-grid { padding: 0 40px; }
  .footer-main { padding: 52px 40px 40px; grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { padding: 14px 40px; }
  .hero { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__left { padding: 80px 40px; }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-hero { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cgv-header, .cgv-body { padding-left: 40px; padding-right: 40px; }
  .cgv-summary { margin: -28px 40px 50px; }
  .cgv-toc-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 767px) {
  .contact-bar { padding: 8px 16px; flex-direction: column; gap: 4px; align-items: flex-start; font-size: 11px; }
  .contact-bar__left { gap: 10px; }
  .contact-bar__hours { align-self: flex-end; }
  .header-inner { padding: 0 16px; height: 60px; }
  .main-nav, .header-actions { display: none !important; }
  .nav-toggle { display: flex !important; }
  .main-nav.open {
    display: flex !important; flex-direction: column; height: auto; position: absolute;
    top: 60px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 200; padding: 8px 0 16px;
  }
  .main-nav.open a { height: auto; padding: 13px 20px; border-bottom: none; border-left: 3px solid transparent; font-size: 15px; }
  .main-nav.open a:hover, .main-nav.open a.active { border-left-color: var(--blue); background: #F0F5FC; border-bottom: none; }
  #ab-banner { padding: 10px 36px 10px 16px; font-size: 12px; text-align: left; }
  .hero__left { padding: 52px 20px 48px; }
  .hero__title { font-size: clamp(32px, 9vw, 44px); }
  .hero__sub { font-size: 14px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; width: 100%; }
  .hero__stats { flex-direction: column; gap: 18px; border-top: 1px solid rgba(255,255,255,.1); }
  .stat { border-right: none; padding-right: 0; margin-right: 0; display: flex; gap: 12px; align-items: baseline; }
  .stat__val { font-size: 28px; }
  .searchbar { flex-direction: column; padding: 16px 16px; gap: 10px; }
  .search-group { width: 100%; }
  .search-btn { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 0 16px; gap: 0; }
  .trust-item { border-right: none; padding-right: 0; margin-right: 0; padding: 18px 0; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { padding-right: 12px; }
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cars-grid { grid-template-columns: 1fr; gap: 16px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .steps-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; gap: 14px; }
  .testi-header { flex-direction: column; gap: 12px; }
  .testi-rating { text-align: left; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { justify-content: center; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 16px 28px; gap: 28px; }
  .footer-bottom { padding: 14px 16px; flex-direction: column; text-align: center; gap: 8px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .contact-form-card { padding: 24px 18px; }
  .vehicle-info { padding: 32px 20px; }
  .vehicle-specs-detail { grid-template-columns: 1fr; }
  .vehicle-actions { flex-direction: column; }
  .vehicle-actions .btn { justify-content: center; }
  .cgv-header { padding: 40px 16px 32px; }
  .cgv-summary { margin: -24px 16px 36px; padding: 20px 20px; }
  .cgv-body { padding: 0 16px 56px; }
  .cgv-table { font-size: 12px; }
  .cgv-table thead th, .cgv-table tbody td { padding: 8px 10px; }
  .cgv-step { gap: 12px; }
  .cgv-article div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Media split sections (À propos, Avantages, Comment ça marche) */
  .inner-hero .hero__left { padding: 52px 20px 44px; }
  .media-split { grid-template-columns: 1fr; gap: 28px; }
  .media-split--reverse .media-split__media { order: 0; }
  .media-split__media { aspect-ratio: 16/10; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-grid__item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .doc-columns { grid-template-columns: 1fr; gap: 14px; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .stat-band__item { padding: 26px 16px; }
  .stat-band__val { font-size: 30px; }
}

@media (max-width: 480px) {
  .media-grid { grid-template-columns: 1fr; }
  .media-grid__item--tall { aspect-ratio: 4/3; }
}

@media (max-width: 380px) {
  .trust-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
}
