:root {
  --bg: #0b0d10;
  --bg-2: #0e1115;
  --text: #e6e8ec;
  --muted: #9aa3ad;
  --border: rgba(255,255,255,0.08);
  --card: rgba(255,255,255,0.03);
  --neon: #44ff3a; /* toned green */
  --shadow-neon: 0 0 10px rgba(68,255,58,0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

/* Mobile safety: avoid horizontal scroll */
html, body { max-width: 100%; overflow-x: hidden; }
.container { width: min(1120px, 92vw); margin: 0 auto; }
.container, .hero, .grid-2, .grid-3 { overflow-x: hidden; }

.bg-effects::before { content: ""; position: fixed; inset: 0; background: none; z-index: -1; }

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.logo { color: #fff; text-decoration: none; font-weight: 800; letter-spacing: 0.2px; font-size: 20px; }
.logo span { color: var(--neon); }

.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--text); text-decoration: none; font-weight: 500; opacity: 0.9; }
.nav .btn { margin-left: 6px; color: #0a0f0a; }

.hide-mobile { display: inline; }

.btn {
  --pad-x: 18px; --pad-y: 12px; --radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius);
  color: #0a0f0a; text-decoration: none; font-weight: 700; letter-spacing: 0.2px;
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease, color .2s ease;
  background: linear-gradient(180deg, #a6f39e, var(--neon));
  box-shadow: 0 6px 12px rgba(68,255,58,0.16);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(68,255,58,0.25); }
.btn:active { transform: translateY(0); }
.btn.xl { --pad-x: 28px; --pad-y: 18px; font-size: 1.1rem; border-radius: 12px; }

.btn-secondary { background: #151a15; color: var(--text); border: 1px solid var(--border); box-shadow: none; }

.neon { color: var(--neon); }

.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; padding: 56px 0 34px; align-items: center; }
.hero-text h1 { font-size: clamp(34px, 5vw, 54px); margin: 8px 0 10px; line-height: 1.05; }
.lead { font-size: 1.1rem; color: #cfd5dd; margin: 0 0 18px; max-width: 60ch; }

.benefits { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 8px; }
.benefits li { padding-left: 28px; position: relative; color: #d8dee5; }
.benefits li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--neon); opacity: .8; }

.cta-group { display: flex; align-items: center; gap: 14px; margin: 12px 0 6px; flex-wrap: wrap; }
.trust { color: var(--muted); font-size: 0.95rem; }

.guarantee { display: flex; align-items: center; gap: 10px; color: #b7c0c9; margin-top: 10px; }
.guarantee svg { color: var(--neon); }

.hero-media { display: flex; justify-content: center; }
.cover { width: min(420px, 88vw); aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; background: linear-gradient(145deg, #0f1116, #0a0b0e); border: 1px solid var(--border); position: relative; }
.cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover.placeholder { background: linear-gradient(180deg, #0f1116, #0a0b0e); }
.glow { box-shadow: 0 30px 80px rgba(0,0,0,0.5); }

.label-offre { display: inline-flex; align-items: center; gap: 8px; color: #a8b1ba; background: #0f1410; padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; }
.label-offre strong { color: var(--neon); }
.label-offre .sep { color: #5b626b; }
.label-offre .countdown { margin-left: 6px; color: #d6dbe1; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; min-width: 0; }
.grid-3.small { grid-template-columns: repeat(3, 1fr); }

.card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.section-title { font-size: clamp(22px, 3.8vw, 34px); margin: 8px 0 14px; }

.why { padding: 34px 0 10px; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { padding-left: 28px; position: relative; }
.checklist li::before { content: "✓"; color: var(--neon); position: absolute; left: 6px; top: 0; }

.features { padding: 18px 0 6px; }
.feature h3 { margin: 6px 0 6px; }
.bullets { list-style: none; padding-left: 0; }
.bullets li { padding: 8px 0; color: #d2d7de; position: relative; padding-left: 26px; }
.bullets li::before { content: "→"; position: absolute; left: 8px; color: #aeb5bd; }

.testimonials { padding: 20px 0 6px; }
.testimonial blockquote { margin: 0 0 10px; color: #dfe5eb; }
.testimonial figcaption { color: var(--muted); font-size: 0.95rem; }

.pricing { padding: 18px 0 28px; }
.pricing-card { text-align: center; padding: 22px; }
.price-wrap { display: inline-flex; align-items: baseline; gap: 12px; margin: 2px 0 10px; }
.price .old { color: #8a929c; text-decoration: line-through; font-weight: 600; }
.price .now { font-size: 40px; font-weight: 900; color: var(--text); padding: 0 6px; border-radius: 8px; border: 1px solid var(--border); background: transparent; }
.badge { display: inline-block; color: var(--neon); border: 1px solid rgba(68,255,58,0.35); padding: 3px 8px; border-radius: 999px; font-weight: 700; }
.countdown-line { margin-top: 10px; color: #cdd3da; }
.stock-left { display: inline-flex; align-items: center; gap: 8px; color: #cdd3da; }
.stock-left .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: var(--shadow-neon); display: inline-block; }

.faq { padding: 10px 0 40px; }
.faq details { margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--neon); }
.faq p { color: #d0d6dd; margin: 6px 0 2px; }

.site-footer { border-top: 1px solid var(--border); padding: 20px 0 40px; background: var(--bg); }
.site-footer .muted { color: var(--muted); font-size: 0.9rem; }

.sticky-bar { position: fixed; left: 0; right: 0; bottom: -90px; transition: bottom .25s ease; background: var(--bg); border-top: 1px solid var(--border); backdrop-filter: blur(8px); z-index: 60; }
.sticky-bar.visible { bottom: 0; }
.bar-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }

/* removed pulse animation for cleaner look */

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 38px; }
  .hero-media { order: -1; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-3.small { grid-template-columns: 1fr; }
  .bar-inner { gap: 12px; }
  .price .now { font-size: 34px; }
  .hide-mobile { display: none; }
}


