/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #EBF4FF;
  color: #051B84;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Typographie ── */
.label {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: #1A80DA;
  margin-bottom: 1rem;
}
h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400; line-height: 1.1; color: #051B84;
}
h2 em { font-style: italic; color: #1A80DA; }

/* ── Boutons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, #1A80DA 0%, #051B84 100%);
  color: #fff; border: none; border-radius: 10px;
  padding: .85rem 1.75rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem; font-weight: 700; letter-spacing: .5px;
  cursor: pointer; transition: opacity .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover {
  opacity: .9; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,128,218,.35);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(5,27,132,.6); font-size: .88rem; font-weight: 600;
  transition: color .2s;
}
.btn-ghost:hover { color: #1A80DA; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(36px); }

/* ── NAV — blanc propre comme l'app ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(5,27,132,.07);
  box-shadow: 0 1px 16px rgba(5,27,132,.06);
}
#nav-logo { height: 38px; width: 120px; object-fit: cover; }
#nav-links { display: flex; gap: 2rem; }
#nav-links a {
  font-size: .8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(5,27,132,.55);
  transition: color .2s;
}
#nav-links a:hover { color: #1A80DA; }
.nav-cta { padding: .6rem 1.4rem !important; font-size: .78rem !important; }

/* ── THEME TOGGLE ── */
#theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(5,27,132,.08); border: 1px solid rgba(5,27,132,.14);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(5,27,132,.65);
  transition: all .2s; flex-shrink: 0;
}
#theme-toggle:hover { background: rgba(5,27,132,.14); color: #1A80DA; }
#theme-toggle svg { width: 17px; height: 17px; pointer-events: none; }
#icon-sun { display: none; }
#icon-moon { display: block; }
[data-theme="dark"] #theme-toggle {
  background: rgba(255,255,255,.08); border-color: rgba(235,244,255,.15);
  color: rgba(235,244,255,.65);
}
[data-theme="dark"] #theme-toggle:hover { background: rgba(255,255,255,.14); color: #17C7FF; }
[data-theme="dark"] #icon-sun { display: block; }
[data-theme="dark"] #icon-moon { display: none; }
#nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
#nav-burger span { display: block; width: 22px; height: 1.5px; background: #051B84; }

/* ── HERO — carte navy sombre comme le banner de l'app ── */
#hero {
  position: relative;
  padding: 7rem 5% 5rem; overflow: hidden;
  background: #EBF4FF;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-card {
  position: relative;
  background: #051B84;
  border-radius: 28px;
  padding: 4rem 5rem 4rem 4.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(5,27,132,.28);
}
/* subtle glow inside card */
.hero-card::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(23,199,255,.15);
  filter: blur(70px); pointer-events: none;
}
.hero-card::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(26,128,218,.18);
  filter: blur(60px); pointer-events: none;
}
#hero-left { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(23,199,255,.12); border: 1px solid rgba(23,199,255,.25);
  border-radius: 100px; padding: .45rem 1rem;
  font-size: .72rem; font-weight: 600; color: rgba(235,244,255,.75);
  letter-spacing: .5px; margin-bottom: 1.75rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #17C7FF; box-shadow: 0 0 8px #17C7FF;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.4; } }
#hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 400; line-height: .98; letter-spacing: -1.5px;
  color: #EBF4FF; margin-bottom: 1.4rem;
}
#hero h1 em { font-style: italic; color: #17C7FF; }
.hero-sub {
  font-size: .96rem; line-height: 1.75;
  color: rgba(235,244,255,.82); max-width: 400px; margin-bottom: 2.25rem;
}
.hero-btns { display: flex; gap: 1.25rem; align-items: center; margin-bottom: 2.75rem; flex-wrap: wrap; }
.hero-btns .btn-primary {
  background: #fff; color: #051B84;
  box-shadow: none;
}
.hero-btns .btn-primary:hover {
  background: #EBF4FF; box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.hero-btns .btn-ghost { color: rgba(235,244,255,.88); }
.hero-btns .btn-ghost:hover { color: #17C7FF; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.7rem; font-weight: 800; color: #EBF4FF; line-height: 1; }
.stat .plus { color: #17C7FF; }
.stat span { font-size: .68rem; color: rgba(235,244,255,.58); letter-spacing: 1px; text-transform: uppercase; margin-top: .25rem; }
.stat-sep { width: 1px; height: 34px; background: rgba(235,244,255,.12); }
#hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(23,199,255,.25) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none; top: 30%; left: 50%;
  transform: translate(-50%,-50%);
}
#hero-img {
  position: relative; z-index: 2;
  width: 90%; max-width: 340px;
  object-fit: contain;
  mix-blend-mode: multiply;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.25));
}
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }

/* ── HERO BG IMAGE ── */
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('../images/scene1.png') center / cover no-repeat;
  opacity: 0.07;
  z-index: 0; pointer-events: none;
}

/* ── TICKER ── */
#ticker {
  background: #fff;
  border-top: 1px solid rgba(5,27,132,.07);
  border-bottom: 1px solid rgba(5,27,132,.07);
  padding: 1rem 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  animation: ticker 24s linear infinite;
}
.ticker-track span {
  font-size: .78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(5,27,132,.6); flex-shrink: 0;
}
.ticker-track i { color: #1A80DA; font-style: normal; flex-shrink: 0; }
@keyframes ticker { from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ── FEATURES ── */
#features {
  background: #fff; padding: 7rem 5%;
}
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.section-head p { font-size: .95rem; color: rgba(5,27,132,.5); margin-top: .75rem; }

.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}

/* Glass card sur fond blanc */
.card {
  background: #fff;
  border: 1px solid rgba(5,27,132,.08);
  border-radius: 20px; padding: 2.25rem;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 20px rgba(5,27,132,.05);
  transition: transform .3s ease, border-color .3s, box-shadow .3s;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,128,218,.2), transparent);
  pointer-events: none;
}
.card:hover {
  border-color: rgba(26,128,218,.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(5,27,132,.1);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,128,218,.12), rgba(23,199,255,.06));
  border: 1px solid rgba(26,128,218,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.card-icon svg {
  width: 22px; height: 22px;
  stroke: #1A80DA; fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.card h3 { font-size: 1.05rem; font-weight: 700; color: #051B84; margin-bottom: .75rem; }
.card p { font-size: .88rem; line-height: 1.75; color: rgba(5,27,132,.65); }
.card-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #1A80DA, transparent);
  opacity: 0; transition: opacity .3s;
}
.card:hover .card-line { opacity: 1; }

/* ── VEHICLES ── */
#vehicles { padding: 5rem 5%; background: #EBF4FF; }
.veh-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; margin: 0 auto 7rem;
}
.veh-row.reverse { direction: rtl; }
.veh-row.reverse > * { direction: ltr; }
.veh-img { position: relative; }
.veh-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle at center, rgba(26,128,218,.12) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.veh-img img {
  width: 100%; border-radius: 20px;
  object-fit: cover; aspect-ratio: 4/3;
  position: relative; z-index: 2;
  box-shadow: 0 20px 60px rgba(5,27,132,.12);
}
.veh-text h2 { margin-bottom: 1.25rem; }
.veh-text p { font-size: .95rem; line-height: 1.8; color: rgba(5,27,132,.68); margin-bottom: 1.75rem; }
.veh-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.veh-list li {
  font-size: .88rem; color: rgba(5,27,132,.72);
  padding-left: 1.5rem; position: relative;
}
.veh-list li::before { content: '→'; position: absolute; left: 0; color: #1A80DA; font-weight: 700; }

/* ── DOWNLOAD — glass ── */
#download {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #03081A 0%, #060D28 35%, #0B1A50 65%, #060E2C 100%);
  padding: 5rem 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

/* Orbs décoratifs */
#download::before {
  content: '';
  position: absolute; top: -160px; left: -80px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,128,218,.32) 0%, transparent 68%);
  filter: blur(55px); pointer-events: none;
}
#download::after {
  content: '';
  position: absolute; bottom: -120px; right: -60px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(23,199,255,.18) 0%, rgba(5,27,132,.25) 55%, transparent 78%);
  filter: blur(65px); pointer-events: none;
}

/* Blobs HTML existants */
.blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(72px); z-index: 0; }
.b4 { width: 380px; height: 380px; top: 50%; left: 50%; transform: translate(-50%,-50%);
      background: radial-gradient(circle, rgba(23,199,255,.12), transparent 70%); }
.b5 { width: 280px; height: 280px; bottom: -40px; left: 30%;
      background: radial-gradient(circle, rgba(26,128,218,.2), transparent 70%); }

#download .label { color: #17C7FF; }
#download h2 { color: #EBF4FF; }
#download h2 em { color: #17C7FF; }

/* Carte glass */
#dl-content {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 2.75rem 3rem;
}
#dl-content h2 { font-size: clamp(2.2rem, 4vw, 4rem); margin-bottom: 1.25rem; }
#dl-content p { font-size: .95rem; line-height: 1.8; color: rgba(235,244,255,.78); margin-bottom: 2.5rem; max-width: 440px; }
#store-btns { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: .9rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: .9rem 1.6rem; border-radius: 14px;
  backdrop-filter: blur(12px);
  transition: all .25s;
}
.store-btn:hover {
  background: rgba(255,255,255,.18); border-color: rgba(23,199,255,.4);
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.store-logo { width: 26px; height: 26px; flex-shrink: 0; color: #EBF4FF; }
.store-btn small { display: block; font-size: .58rem; color: rgba(235,244,255,.45); letter-spacing: .5px; text-transform: uppercase; }
.store-btn strong { font-size: .92rem; color: #EBF4FF; font-weight: 700; }
#dl-img { position: relative; z-index: 2; }
.phone-wrap { position: relative; }
.phone-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle at center, rgba(23,199,255,.18) 0%, transparent 65%);
  filter: blur(30px); pointer-events: none;
}
.dl-scene {
  width: 100%; border-radius: 20px;
  object-fit: contain;
  position: relative; z-index: 2;
}

/* ── CONTACT ── */
#contact {
  padding: 6rem 5%;
  background: #EBF4FF;
}
#contact-card {
  max-width: 1100px; margin: 2.5rem auto 0;
  display: grid; grid-template-columns: 1fr 1.35fr;
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(5,27,132,.14);
}

/* Panneau gauche bleu */
#contact-left {
  background: linear-gradient(150deg, #051B84 0%, #0D3BA2 55%, #1A80DA 100%);
  padding: 2.5rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.contact-tag {
  display: inline-flex; align-self: flex-start;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  color: #EBF4FF; font-size: .7rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: .4rem .9rem; border-radius: 20px;
}
#contact-left h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  color: #EBF4FF; line-height: 1.15;
}
#contact-left > p {
  font-size: .82rem; color: rgba(235,244,255,.72);
  line-height: 1.7; max-width: 300px;
}
#contact-infos {
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; z-index: 1;
  margin-top: auto;
}
#contact-infos a, #contact-infos span {
  display: flex; align-items: center; gap: .75rem;
  font-size: .85rem; color: rgba(235,244,255,.8);
  transition: color .2s; text-decoration: none;
}
#contact-infos a:hover { color: #17C7FF; }
.info-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 15px; height: 15px; color: #EBF4FF; }

/* Panneau droit formulaire */
#contact-right {
  background: #fff;
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
#contact-right h4 {
  font-size: 1.1rem; font-weight: 700; color: #051B84;
}
#contact-form { display: flex; flex-direction: column; gap: .85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .72rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: #64748B;
}
#contact-form input,
#contact-form select,
#contact-form textarea {
  width: 100%;
  background: #F8FAFF;
  border: 1.5px solid #C5D8F0; border-radius: 10px;
  padding: .7rem .9rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem; color: #051B84; outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
}
#contact-form input::placeholder,
#contact-form textarea::placeholder { color: #94A3B8; }
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: #1A80DA;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,128,218,.1);
}
#contact-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 2.5rem; }
#contact-form textarea { resize: vertical; min-height: 90px; }
#contact-form .btn-primary {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: 1rem; font-size: .9rem;
  letter-spacing: .8px; text-transform: uppercase; margin-top: .25rem;
}
#contact-success {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 2rem 1rem;
  animation: fadeIn .4s ease;
}
.cf-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #1A80DA, #051B84);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(26,128,218,.3);
}
.cf-success-icon svg { width: 28px; height: 28px; color: #fff; }
#contact-success h4 { font-size: 1.2rem; font-weight: 700; color: #051B84; }
#contact-success p  { font-size: .85rem; color: #64748B; line-height: 1.7; max-width: 300px; }
#contact-success .btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; font-size: .85rem;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ── FOOTER — navy sombre ── */
footer {
  background: #040E2A;
  padding: 3rem 5% 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
#footer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem;
}
#footer-social { display: flex; gap: .85rem; align-items: center; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(235,244,255,.55); transition: all .2s;
}
.social-link:hover { background: rgba(26,128,218,.35); border-color: #1A80DA; color: #EBF4FF; transform: translateY(-2px); }
.social-link svg { width: 16px; height: 16px; }
#footer-logo { height: 34px; width: 108px; object-fit: cover; }
#footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
#footer-nav a {
  font-size: .7rem; color: rgba(235,244,255,.55);
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: color .2s;
}
#footer-nav a:hover { color: #17C7FF; }
#footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.05);
}
#footer-bottom p { font-size: .7rem; color: rgba(235,244,255,.42); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-card { padding: 3rem 3rem 3rem 3.5rem; }
}
@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; text-align: center; padding: 3rem 2.5rem; }
  .hero-sub { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  #hero-right { display: none; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .veh-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .veh-row.reverse { direction: ltr; }
  #download { grid-template-columns: 1fr; }
  #dl-img { display: none; }
  #contact-card { grid-template-columns: 1fr; }
  #contact-left { padding: 2.75rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  #nav-links { display: none; }
  .nav-cta { display: none; }
  #nav-burger { display: flex; }
  #nav-links.open {
    display: flex; flex-direction: column; gap: 1.5rem;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    padding: 2rem 5%; border-bottom: 1px solid rgba(5,27,132,.07);
  }
  .cards-grid { grid-template-columns: 1fr; }
  #footer-top { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  #footer-nav { flex-wrap: wrap; gap: 1rem; }
  #hero { padding: 5.5rem 4% 3rem; }
  .hero-card { padding: 2.5rem 2rem; }
  #store-btns { flex-direction: column; }
  .store-btn { justify-content: center; }
  #contact { padding: 5rem 5%; }
  #features { padding: 5rem 5%; }
  #vehicles { padding: 3rem 5%; }
  .veh-row { margin-bottom: 4rem; }
  #download { padding: 3rem 5%; }
}

/* ── CATALOGUE ── */
#catalogue {
  padding: 6rem 5%;
  background: #F0F7FF;
}
.section-sub {
  font-size: .95rem; color: #64748B; max-width: 540px;
  margin: .75rem auto 0; line-height: 1.7;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.cat-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(5,27,132,.07);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(5,27,132,.13); }
.cat-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.05); }
.cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: #1A80DA; color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px;
}
.cat-badge-new  { background: #059669; }
.cat-badge-promo { background: #D97706; }
.cat-info {
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: .5rem;
  flex: 1;
}
.cat-label {
  font-size: .65rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #1A80DA;
}
.cat-info h3 {
  font-size: 1.1rem; font-weight: 700; color: #051B84; line-height: 1.2;
}
.cat-info p {
  font-size: .78rem; color: #64748B; line-height: 1.6; flex: 1;
}
.cat-price {
  font-size: .85rem; color: #64748B;
}
.cat-price strong { color: #051B84; font-size: 1rem; }
.cat-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #EBF4FF; color: #1A80DA;
  padding: .6rem 1rem; border-radius: 8px;
  font-size: .8rem; font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s;
  margin-top: .25rem;
}
.cat-btn:hover { background: #1A80DA; color: #fff; }
.cat-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.cat-cta p { color: #64748B; font-size: .9rem; }

/* ── AVIS ── */
#reviews {
  padding: 6rem 5%;
  background: #fff;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: #F8FAFF;
  border: 1px solid #C5E2FF;
  border-radius: 20px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(26,128,218,.12); }
.review-stars { font-size: 1.1rem; color: #F59E0B; letter-spacing: 2px; }
.review-text {
  font-size: .88rem; color: #374151; line-height: 1.75;
  font-style: italic; flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: .75rem;
  border-top: 1px solid #C5E2FF;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #1A80DA, #051B84);
  color: #fff; font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .85rem; color: #051B84; }
.review-author span   { font-size: .75rem; color: #64748B; }

.reviews-summary {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #051B84, #1A80DA);
  border-radius: 20px;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.reviews-score { display: flex; align-items: center; gap: 1rem; }
.score-num { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }
.score-stars { font-size: 1.1rem; color: #FCD34D; }
.score-label { font-size: .75rem; color: rgba(255,255,255,.7); margin-top: .2rem; }
.reviews-counts { display: flex; align-items: center; gap: 2rem; }
.count-item { text-align: center; }
.count-item strong { display: block; font-size: 1.6rem; font-weight: 800; color: #fff; }
.count-item span   { font-size: .75rem; color: rgba(255,255,255,.7); }
.count-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-summary { flex-direction: column; text-align: center; }
  .reviews-counts { justify-content: center; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { padding: 1.5rem; }
}

/* ═══════════════════════════════════════
   DARK MODE
   ═══════════════════════════════════════ */
[data-theme="dark"] body { background: #07101F; color: #EBF4FF; }
[data-theme="dark"] h2 { color: #EBF4FF; }

/* Nav */
[data-theme="dark"] #nav {
  background: rgba(7,16,31,.9);
  border-bottom-color: rgba(235,244,255,.06);
  box-shadow: 0 1px 20px rgba(0,0,0,.35);
}
[data-theme="dark"] #nav-links a { color: rgba(235,244,255,.5); }
[data-theme="dark"] #nav-links a:hover { color: #17C7FF; }
[data-theme="dark"] #nav-burger span { background: rgba(235,244,255,.75); }
[data-theme="dark"] #nav-links.open {
  background: rgba(7,16,31,.97);
  border-bottom-color: rgba(235,244,255,.06);
}

/* Hero */
[data-theme="dark"] #hero { background: #07101F; }
[data-theme="dark"] .hero-bg-img { opacity: 0.14; }

/* Ticker */
[data-theme="dark"] #ticker { background: #0A1628; border-color: rgba(255,255,255,.05); }
[data-theme="dark"] .ticker-track span { color: rgba(235,244,255,.45); }

/* Features */
[data-theme="dark"] #features { background: #0B1729; }
[data-theme="dark"] .section-head p { color: rgba(235,244,255,.48); }
[data-theme="dark"] .card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
[data-theme="dark"] .card:hover {
  border-color: rgba(23,199,255,.28);
  box-shadow: 0 16px 50px rgba(0,0,0,.45);
}
[data-theme="dark"] .card-icon {
  background: linear-gradient(135deg, rgba(26,128,218,.2), rgba(23,199,255,.1));
  border-color: rgba(23,199,255,.2);
}
[data-theme="dark"] .card h3 { color: #EBF4FF; }
[data-theme="dark"] .card p { color: rgba(235,244,255,.58); }

/* Vehicles */
[data-theme="dark"] #vehicles { background: #07101F; }
[data-theme="dark"] .veh-text p { color: rgba(235,244,255,.6); }
[data-theme="dark"] .veh-list li { color: rgba(235,244,255,.65); }

/* Contact */
[data-theme="dark"] #contact { background: #0A1628; }
[data-theme="dark"] #contact-right { background: #0D1F38; }
[data-theme="dark"] #contact-right h4 { color: #EBF4FF; }
[data-theme="dark"] .form-group label { color: rgba(235,244,255,.45); }
[data-theme="dark"] #contact-form input,
[data-theme="dark"] #contact-form select,
[data-theme="dark"] #contact-form textarea {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: #EBF4FF;
}
[data-theme="dark"] #contact-form input::placeholder,
[data-theme="dark"] #contact-form textarea::placeholder { color: rgba(235,244,255,.26); }
[data-theme="dark"] #contact-form input:focus,
[data-theme="dark"] #contact-form select:focus,
[data-theme="dark"] #contact-form textarea:focus {
  border-color: #1A80DA; background: rgba(26,128,218,.09);
  box-shadow: 0 0 0 3px rgba(26,128,218,.15);
}

/* Ghost button in light sections on dark mode */
[data-theme="dark"] .btn-ghost { color: rgba(235,244,255,.6); }
[data-theme="dark"] .btn-ghost:hover { color: #17C7FF; }

/* Catalogue */
[data-theme="dark"] #catalogue { background: #0A1628; }
[data-theme="dark"] .section-sub { color: rgba(235,244,255,.48); }
[data-theme="dark"] .cat-card {
  background: rgba(255,255,255,.04);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
[data-theme="dark"] .cat-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.5); }
[data-theme="dark"] .cat-info h3 { color: #EBF4FF; }
[data-theme="dark"] .cat-info p { color: rgba(235,244,255,.5); }
[data-theme="dark"] .cat-label { color: #17C7FF; }
[data-theme="dark"] .cat-price { color: rgba(235,244,255,.5); }
[data-theme="dark"] .cat-price strong { color: #EBF4FF; }
[data-theme="dark"] .cat-btn {
  background: rgba(26,128,218,.15);
  color: #17C7FF;
}
[data-theme="dark"] .cat-btn:hover { background: #1A80DA; color: #fff; }
[data-theme="dark"] .cat-cta p { color: rgba(235,244,255,.48); }

/* Reviews */
[data-theme="dark"] #reviews { background: #07101F; }
[data-theme="dark"] .review-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .review-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.4); }
[data-theme="dark"] .review-text { color: rgba(235,244,255,.7); }
[data-theme="dark"] .review-author strong { color: #EBF4FF; }
[data-theme="dark"] .review-author span { color: rgba(235,244,255,.45); }
[data-theme="dark"] .review-author { border-top-color: rgba(255,255,255,.08); }
