:root{
  --bg: #fbfcfe;
  --card:#ffffff;
  --txt:#0b1220;
  --muted:#5b667a;

  /* Bleu plus “marine pro”, moins néon */
  --accent:#0b5fff;
  --accent2:#1aa3ff;

  --stroke: rgba(15, 23, 42, .10);
  --stroke2: rgba(15, 23, 42, .06);

  --shadow: 0 1px 1px rgba(2, 6, 23, .04);
  --r: 14px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--txt);
  line-height:1.65;
  background: var(--bg);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.96}

.container{max-width:var(--max);margin:0 auto;padding:0 20px}

/* Header (clean, pas “verre” trop visible) */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(251,252,254,.90);
  border-bottom:1px solid var(--stroke2);
  backdrop-filter: blur(8px);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:850;
  letter-spacing:.2px;
}
.brand .dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(11,95,255,.08);
}

.menu{display:flex; gap:8px; flex-wrap:wrap}
.menu a{
  padding:8px 10px;
  border-radius:10px;
  color: rgba(11,18,32,.78);
}
.menu a[aria-current="page"]{
  color: rgba(11,18,32,1);
  background: rgba(11,95,255,.06);
  border:1px solid rgba(11,95,255,.14);
}
.menu a:hover{
  background: rgba(2,6,23,.03);
  border: 1px solid rgba(2,6,23,.06);
  color: rgba(11,18,32,1);
}

/* Layout */
main{padding:26px 0 0}
.hero{padding:26px 0 10px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
@media(max-width:900px){ .heroGrid{grid-template-columns:1fr} }

h1{
  font-size: clamp(28px, 4vw, 44px);
  line-height:1.12;
  margin:0 0 10px;
  letter-spacing:-0.2px;
}
h2{
  margin:20px 0 10px;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing:-0.1px;
}
h3{margin:14px 0 8px}
p{margin:0 0 12px; color: var(--muted)}
.muted{color: var(--muted)}

hr{border:0;border-top:1px solid var(--stroke2);margin:18px 0}

/* Cards (vraiment sobres) */
.card{
  background: var(--card);
  border: 1px solid var(--stroke2);
  border-radius: var(--r);
  padding:20px;
  box-shadow: var(--shadow);
}

/* Badges discrets */
.badges{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 18px}
.badge{
  font-size:13px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(2,6,23,.03);
  border:1px solid rgba(2,6,23,.06);
  color: rgba(11,18,32,.82);
}

/* Buttons (moins “pills”, plus pro) */
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius: 12px;
  border:1px solid rgba(2,6,23,.10);
  background: #fff;
  font-weight:800;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 10px 28px rgba(2,6,23,.08)}
.btn.primary{
  background: var(--accent);
  color: #fff;
  border-color: rgba(11,95,255,.55);
}
.btn.primary:hover{filter: brightness(1.03)}
.small{font-size:13px;color:var(--muted)}

/* KPI */
.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:16px;
}
@media(max-width:700px){ .kpis{grid-template-columns:1fr} }
.kpi{
  padding:12px 12px;
  border-radius:12px;
  background: rgba(2,6,23,.02);
  border:1px solid rgba(2,6,23,.06);
}
.kpi b{display:block; font-size:16px; margin-bottom:2px}

/* Footer */
footer{
  margin-top:26px;
  padding:22px 0;
  border-top:1px solid var(--stroke2);
  color: var(--muted);
}

/* ====== GALLERY / SLIDESHOW PRO ====== */
/* Structure: .galleryShell > .galleryMain + .galleryThumbs */
.galleryShell{
  margin-top: 12px;
}

.galleryMain{
  position:relative;
  border-radius: 14px;
  overflow:hidden;
  border:1px solid var(--stroke2);
  background: rgba(2,6,23,.02);
}

.galleryViewport{
  position:relative;
  aspect-ratio: 16 / 10;
  width:100%;
}

.gSlide{
  position:absolute; inset:0;
  opacity:0;
  transition: opacity .25s ease;
}
.gSlide.is-active{opacity:1}
.gSlide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Arrows: pas d’overlay en bas, juste latéral discret */
.gArrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:44px; height:44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(2,6,23,.14);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  font-size: 22px;
  color: rgba(11,18,32,.9);
}
.gArrow:hover{filter: brightness(1.02)}
.gArrow.prev{left:12px}
.gArrow.next{right:12px}

/* Thumbnails */
.galleryThumbs{
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap:10px;
  margin-top:10px;
}
@media(max-width:900px){ .galleryThumbs{grid-template-columns: repeat(4, 1fr)} }
@media(max-width:520px){ .galleryThumbs{grid-template-columns: repeat(3, 1fr)} }

.thumb{
  border-radius: 12px;
  overflow:hidden;
  border:1px solid rgba(2,6,23,.08);
  background: rgba(2,6,23,.02);
  cursor:pointer;
  opacity:.85;
}
.thumb:hover{opacity:1}
.thumb.is-active{
  outline: 2px solid rgba(11,95,255,.35);
  border-color: rgba(11,95,255,.25);
  opacity:1;
}
.thumb img{
  width:100%;
  height:68px;
  object-fit:cover;
  display:block;
}

/* Equip / Specs / Reviews harmonisés */
.equipGrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:10px}
@media (max-width: 820px){.equipGrid{grid-template-columns:1fr}}
.equipCat{border:1px solid var(--stroke2);background:#fff;border-radius:14px;padding:14px}
.equipCat h3{margin:0 0 10px;font-size:15px}
.equipList{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 12px}
@media (max-width: 520px){.equipList{grid-template-columns:1fr}}
.equipList li{display:flex;align-items:center;gap:10px;padding:10px;border-radius:12px;background:rgba(2,6,23,.02);border:1px solid rgba(2,6,23,.06)}
.equipList li::before{
  content:"";
  width:8px;height:8px;border-radius:999px;
  background: var(--accent);
  box-shadow:0 0 0 3px rgba(11,95,255,.10);
  flex:0 0 8px;
}

.specGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:12px}
@media (max-width: 920px){.specGrid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 520px){.specGrid{grid-template-columns:1fr}}
.specItem{padding:12px;border-radius:14px;background:rgba(2,6,23,.02);border:1px solid rgba(2,6,23,.06)}
.specItem span{display:block;font-size:12px;color:var(--muted);margin-bottom:2px}
.specItem b{display:block;font-size:15px;color:var(--txt)}

.reviewsGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:14px}
@media (max-width: 1000px){.reviewsGrid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 600px){.reviewsGrid{grid-template-columns:1fr}}
.review{padding:14px;border-radius:14px;background:#fff;border:1px solid rgba(2,6,23,.08);box-shadow: var(--shadow)}
.reviewHead{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.avatar{
  width:38px;height:38px;border-radius:999px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;color: rgba(11,18,32,.9);
  background: rgba(11,95,255,.08);
  border:1px solid rgba(11,95,255,.16);
}
.review p{margin:0;color:var(--muted)}

/* PRICE table (sobre) */
.intro{max-width:720px;margin-bottom:18px}
.priceTable{width:100%;border-collapse:collapse;margin:16px 0 18px;font-size:16px}
.priceTable th,.priceTable td{padding:12px 10px;text-align:left;border-bottom:1px solid rgba(2,6,23,.10)}
.priceTable thead th{font-weight:750;color: rgba(11,18,32,.78)}
.priceTable tbody tr:hover{background: rgba(2,6,23,.015)}
.priceTable .highlight{background: rgba(11,95,255,.04)}
.priceTable td:nth-child(2){font-weight:850}
.note{max-width:820px;color:var(--muted);font-size:14px}
