:root{
  --bg:#070a12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.16);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 22px;
  --radius2: 28px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(130,120,255,.25), transparent 55%),
    radial-gradient(800px 520px at 85% 15%, rgba(0,220,255,.18), transparent 60%),
    radial-gradient(900px 600px at 50% 95%, rgba(255,210,120,.10), transparent 60%),
    var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
.wrap{ max-width: var(--max); margin:0 auto; padding: 0 22px; }
.grid{ display:grid; gap:16px; }
.row{ display:flex; gap:12px; flex-wrap:wrap; }

/* Top Nav */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,10,18,.55);
  border-bottom:1px solid var(--stroke);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.2px;
  min-width: 180px;
}

/* ✅ Wordmark (ton logo complet) */
.logo-wordmark{
  height: 34px;        /* taille propre */
  width: auto;         /* garde la proportion */
  display:block;
  object-fit: contain; /* au cas où */
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.nav-links{
  display:flex; align-items:center; gap:10px;
  color: var(--muted);
  font-weight:700;
}
.nav-links a{ padding:10px 10px; border-radius:12px; }
.nav-links a:hover{ background: rgba(255,255,255,.06); color: var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: var(--stroke2); }
.btn.primary{
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border-color: rgba(255,255,255,.18);
}
.btn.ghost{ background: transparent; }
.btn.full{ width:100%; padding: 14px 16px; border-radius: 18px; }

main{ padding-bottom: 40px; }

/* Hero */
.hero{ padding: 34px 0 10px; }
.hero-card{
  border-radius: var(--radius2);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:-120px;
  background:
    radial-gradient(circle at 20% 30%, rgba(130,120,255,.25), transparent 60%),
    radial-gradient(circle at 70% 10%, rgba(0,220,255,.16), transparent 55%),
    radial-gradient(circle at 60% 75%, rgba(255,210,120,.10), transparent 60%);
  filter: blur(18px);
  opacity:.7;
}
.hero-inner{
  position:relative;
  padding: 34px 26px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: stretch;
}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  width:max-content;
  font-weight:800;
}
.kicker .dot{
  width:10px; height:10px; border-radius:50%;
  background: rgba(255,255,255,.45);
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -.8px;
}
.lead{
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 0 16px;
}

.hero-side{
  border-radius: 22px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  padding: 16px;
  display:flex; flex-direction:column; gap:10px;
}
.stat{
  padding: 14px;
  border-radius: 18px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
}
.stat b{ display:block; font-size: 14px; }
.stat span{ color: var(--muted); font-size: 13px; }

/* Sections */
section{ padding: 30px 0; }
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
  margin-bottom: 14px;
}
.section-title h2{
  margin:0;
  font-size: 24px;
  letter-spacing:-.4px;
}
.section-title p{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 14.5px;
  line-height: 1.5;
}

.card{
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  overflow:hidden;
}
.card.pad{ padding:18px; }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-weight:900;
  font-size: 13px;
  width:max-content;
}

/* Showroom cards */
.showroom-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.model{
  position:relative;
  min-height: 220px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding: 18px;
  background:
    radial-gradient(180px 120px at 20% 20%, rgba(255,255,255,.10), transparent 60%),
    rgba(255,255,255,.06);
}
.model h3{ margin:12px 0 6px; font-size: 20px; letter-spacing:-.3px; }
.model .meta{ color: var(--muted); font-weight:800; }
.model .price{ margin-top:10px; font-weight:950; letter-spacing:.2px; }
.model .actions{ margin-top: 14px; }

/* Packs */
.packs-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pack{
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  min-height: 420px;
  background: rgba(255,255,255,.06);
}
.pack.reco{
  border:1px solid rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  transform: translateY(-2px);
}
.pack h3{ margin:0; font-size: 22px; }
.pack .sub{ color: var(--muted); font-weight:800; }
.pricebox{
  border-radius: 18px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  padding: 14px;
}
.pricebox .small{ color: var(--muted); font-weight:900; font-size:13px; }
.pricebox .big{ font-size: 40px; font-weight:1000; letter-spacing:-1px; line-height: 1.0; margin: 6px 0; }
.pricebox .note{ color: var(--muted2); font-size: 13px; }
ul.check{ margin:0; padding-left: 18px; color: var(--muted); }
ul.check li{ margin: 9px 0; }
.pack .hint{ margin-top:auto; color: var(--muted2); font-size: 13.5px; }

/* Options */
.options-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.opt{
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 8px;
  min-height: 140px;
  background: rgba(255,255,255,.06);
}
.opt h4{ margin:0; font-size: 18px; }
.opt p{ margin:0; color: var(--muted); line-height:1.5; }
.pill{
  align-self:flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  font-weight:950;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
label{ display:block; font-weight:900; font-size: 13px; color: var(--muted); margin: 12px 0 6px; }
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
textarea{ min-height: 120px; resize: vertical; }
.smallmuted{ color: var(--muted2); font-size: 13px; line-height: 1.55; }

/* Footer */
.footer{
  padding: 26px 0 40px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
  color: rgba(255,255,255,.55);
}
.footer-inner{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
}

.page-hero{
  padding: 28px 0 10px;
}
.page-hero h1{ margin: 10px 0 8px; font-size: clamp(26px, 3.2vw, 44px); }
.page-hero p{ margin:0; color: var(--muted); line-height: 1.6; max-width: 78ch; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .showroom-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .packs-grid{ grid-template-columns: 1fr; }
  .options-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .nav-links{ display:none; }
  .logo-wordmark{ height: 30px; }
}
@media (max-width: 520px){
  .showroom-grid{ grid-template-columns: 1fr; }
}
