/* ========== Sync LABSS — Design System ========== */
:root {
  --bg: #080808;
  --text: #F0EDE8;
  --accent: #C8955C;
  --card-bg: #0F0F0F;
  --border: rgba(200, 149, 92, 0.2);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container: min(1200px, 100% - 2rem);
  --section-pad: clamp(3rem, 8vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Syne uniquement pour h1 et h2 */
.hero-title,
.section-title,
.block-title { font-family: var(--font-display); }
.logo-text { font-family: var(--font-body); }

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: var(--container); margin-inline: auto; padding-inline: 1rem; }

/* ========== Curseur custom + fond + orbes ========== */
* { cursor: none; }

#cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: #C8955C;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  top: 0; left: 0;
}

#mouse-glow {
  position: fixed;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,149,92,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
}

#bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(ellipse at 15% 40%, #110A02 0%, #080808 45%, #05050C 100%);
}

#neural-net {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  pointer-events: none;
}

#orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-main {
  width: 420px; height: 420px;
  top: -60px; right: -80px;
  background: radial-gradient(circle at 30% 28%,
    rgba(255,235,180,0.9) 0%,
    rgba(220,170,90,0.7) 15%,
    rgba(180,120,40,0.4) 35%,
    rgba(120,70,20,0.15) 55%,
    transparent 70%
  );
  box-shadow:
    0 0 80px rgba(200,149,92,0.3),
    0 0 200px rgba(200,149,92,0.1),
    inset -20px -20px 60px rgba(0,0,0,0.4),
    inset 10px 10px 30px rgba(255,220,150,0.15);
  filter: blur(0.5px);
  animation: float-main 9s ease-in-out infinite;
}

.orb-main::before {
  content: '';
  position: absolute;
  width: 40%; height: 25%;
  top: 15%; left: 20%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.6) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-30deg);
  filter: blur(4px);
}

.orb-mid {
  width: 220px; height: 220px;
  top: 40%; left: -50px;
  background: radial-gradient(circle at 35% 30%,
    rgba(255,220,150,0.7) 0%,
    rgba(200,149,92,0.4) 25%,
    rgba(140,90,30,0.15) 50%,
    transparent 65%
  );
  box-shadow:
    0 0 50px rgba(200,149,92,0.2),
    0 0 100px rgba(200,149,92,0.08),
    inset -10px -10px 30px rgba(0,0,0,0.3);
  filter: blur(0.5px);
  animation: float-mid 12s ease-in-out infinite;
}

.orb-mid::before {
  content: '';
  position: absolute;
  width: 35%; height: 20%;
  top: 18%; left: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-25deg);
  filter: blur(3px);
}

.orb-small {
  width: 130px; height: 130px;
  bottom: 15%; right: 10%;
  background: radial-gradient(circle at 32% 28%,
    rgba(255,215,140,0.65) 0%,
    rgba(190,135,70,0.35) 30%,
    rgba(120,70,20,0.12) 55%,
    transparent 68%
  );
  box-shadow:
    0 0 35px rgba(200,149,92,0.2),
    0 0 70px rgba(200,149,92,0.07);
  filter: blur(0.5px);
  animation: float-small 7s ease-in-out infinite;
}

.orb-small::before {
  content: '';
  position: absolute;
  width: 32%; height: 18%;
  top: 20%; left: 22%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.45) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-20deg);
  filter: blur(2px);
}

.orb-micro {
  width: 70px; height: 70px;
  top: 25%; left: 30%;
  background: radial-gradient(circle at 35% 30%,
    rgba(255,220,150,0.5) 0%,
    rgba(200,149,92,0.2) 40%,
    transparent 65%
  );
  box-shadow: 0 0 25px rgba(200,149,92,0.15);
  animation: float-micro 5s ease-in-out infinite;
}

@keyframes float-main {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(1deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes float-mid {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-22px); }
}
@keyframes float-small {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  40% { transform: translateY(-12px) translateX(5px); }
  70% { transform: translateY(-5px) translateX(-3px); }
}
@keyframes float-micro {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
  50% { transform: translateY(-15px) scale(1.1); opacity: 1; }
}

/* ========== Icônes SVG 32px (remplacement emojis) ========== */
.icon-32 {
  width: 32px;
  height: 32px;
  color: #C8955C;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-wrap {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.icon-wrap .icon-32 { margin-right: 0.25rem; }

/* ========== Section problème — icônes 3D CSS ========== */
.card-icon-3d {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  perspective: 120px;
}
.card-icon-3d-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(200, 149, 92, 0.35) 0%, rgba(200, 149, 92, 0.15) 50%, rgba(200, 149, 92, 0.25) 100%);
  border: 1px solid rgba(200, 149, 92, 0.4);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
  transform-style: preserve-3d;
}
.card:hover .card-icon-3d-inner {
  transform: rotateY(15deg);
}
.card-icon-3d-inner .icon-32 {
  width: 32px;
  height: 32px;
  color: #C8955C;
}

/* ========== Fond — Réseau de neurones (canvas) ========== */
#neural-net {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 20% 30%, #0E0900 0%, #080808 50%, #05050A 100%);
}

/* ========== Buttons ========== */
.btn {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #080808; border: 2px solid var(--accent); }
.btn-primary:hover { background: #d4a86a; border-color: #d4a86a; color: #080808; }
.btn-secondary, .btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--border); }
.btn-secondary:hover, .btn-outline:hover { border-color: var(--accent); background: rgba(200, 149, 92, 0.08); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-nav { background: var(--accent); color: #080808; border: none; }

/* ========== 1. NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled { background: rgba(8, 8, 8, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; white-space: nowrap; letter-spacing: -0.02em; }
.logo-sync { color: #fff; }
.logo-labss { color: var(--accent); font-weight: 400; }
@media (max-width: 768px) {
  .logo-text { display: none; }
  .logo-icon { width: 40px; height: 40px; }
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text); opacity: 0.9; }
.nav-link {
  transition: all 0.2s ease;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 400;
  text-decoration: none;
  color: rgba(240,237,232,0.7);
}
.nav-link:hover {
  color: #C8955C;
  border-color: rgba(200,149,92,0.3);
  background: rgba(200,149,92,0.05);
}
.nav-link.active {
  color: #C8955C;
  font-weight: 700;
  border: 1px solid rgba(200,149,92,0.5);
  background: rgba(200,149,92,0.08);
}
.nav-toggle { display: none; width: 28px; height: 28px; background: none; border: none; position: relative; }
.nav-toggle::before, .nav-toggle::after { content: ''; position: absolute; left: 0; right: 0; height: 2px; background: var(--text); }
.nav-toggle::before { top: 6px; }
.nav-toggle::after { bottom: 6px; }
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .btn-nav { display: none; }
  .nav-toggle { display: block; }
}

/* ========== 2. HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--section-pad)) 0 var(--section-pad);
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.7);
  max-width: 560px;
  margin: 0 0 2rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
}
.hero-marquee {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.hero-marquee span { white-space: nowrap; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; opacity: 0.75; }
.hero-marquee span:nth-child(odd) { color: var(--accent); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== Sections global ========== */
.section { padding: var(--section-pad) 0; position: relative; z-index: 1; }
.section-dark { background: var(--card-bg); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 0.5rem;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.7);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Block titles (offres) */
.block-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 0.5rem;
}
.block-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.7);
  text-align: center;
  margin: 0 auto 0.5rem;
}
.block-badge {
  font-family: var(--font-body);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.offers-block { margin-bottom: 4rem; }
.offers-block:last-of-type { margin-bottom: 0; }
.offers-note {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.7);
  text-align: center;
  max-width: 640px;
  margin: 2rem auto 0;
}

/* ========== Cards + Hover ========== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s ease;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.card-emoji { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
.card-text { font-family: var(--font-body); margin: 0; font-size: 0.9rem; font-weight: 400; line-height: 1.6; }

/* ========== 4. Calculateur ========== */
.section-calculator { background: var(--card-bg); }
.calculator {
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.calculator-sliders { margin-bottom: 2rem; }
.slider-label {
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.slider-label strong { color: var(--accent); font-family: var(--font-body); font-weight: 700; }
.slider {
  width: 100%;
  height: 8px;
  margin-bottom: 1.25rem;
  -webkit-appearance: none;
  appearance: none;
  background: var(--card-bg);
  border-radius: 4px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
}
.slider::-moz-range-thumb { width: 20px; height: 20px; background: var(--accent); border-radius: 50%; cursor: pointer; border: none; }
.calculator-result { margin-bottom: 2rem; text-align: center; }
.result-loss { font-family: var(--font-body); font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 300; line-height: 1.7; color: rgba(240, 237, 232, 0.7); margin-bottom: 0.5rem; }
.result-gain { font-family: var(--font-body); font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 300; line-height: 1.7; color: rgba(240, 237, 232, 0.7); }
.result-number { font-family: var(--font-body); font-weight: 700; }
.result-loss-num { color: #FF4444; font-size: 2rem; display: block; margin-top: 0.25rem; }
.result-gain-num { color: var(--accent); font-size: 2rem; display: block; margin-top: 0.25rem; }
.calculator .btn { width: 100%; }

/* ========== Pricing cards ========== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .pricing-cards { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s ease;
}
.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.pricing-card.pricing-featured {
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px var(--accent);
}
.pricing-card.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }
@media (max-width: 900px) { .pricing-card.pricing-featured { transform: none; } .pricing-card.pricing-featured:hover { transform: translateY(-4px); } }
.pricing-badge {
  font-family: var(--font-body);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-name { font-family: var(--font-body); font-size: 1.5rem; font-weight: 600; margin: 1rem 0 0.5rem; }
.pricing-price { font-family: var(--font-body); font-size: 2rem; font-weight: 700; color: var(--accent); margin: 0 0 0.25rem; }
.pricing-price span { font-size: 1rem; font-weight: 500; opacity: 0.8; }
.pricing-once { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; line-height: 1.6; opacity: 0.8; margin-bottom: 0.75rem; }
.pricing-install, .pricing-month { font-family: var(--font-body); font-size: 0.9rem; margin: 0.25rem 0; font-weight: 400; line-height: 1.6; }
.pricing-offer { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.pricing-features {
  font-family: var(--font-body);
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  flex-grow: 1;
}
.pricing-features li { padding: 0.25rem 0; padding-left: 1.2rem; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-for { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; line-height: 1.6; opacity: 0.8; margin-bottom: 1rem; }
.pricing-price-devis { font-size: 1.35rem; font-weight: 600; }

/* ========== Pack Bundle (Site + IA) ========== */
.bundle-block {
  margin-bottom: 4rem;
  padding: 2.5rem 0;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(200, 149, 92, 0.35);
  border-radius: 16px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.bundle-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.bundle-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.bundle-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.bundle-options {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}
.bundle-card {
  flex: 1;
  max-width: 420px;
  min-width: 280px;
}
@media (max-width: 700px) { .bundle-options { flex-direction: column; align-items: center; } .bundle-card { max-width: 100%; } }
.bundle-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s ease;
}
.bundle-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.bundle-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.bundle-card-featured:hover { transform: translateY(-4px); }
.bundle-card .pricing-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); }
.bundle-card-name {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--text);
}
.bundle-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}
.bundle-card-total {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.bundle-card-total strong { font-weight: 700; }
.bundle-card-was { font-size: 0.85rem; font-weight: 400; opacity: 0.7; }
.bundle-card-month, .bundle-card-delivery {
  font-family: var(--font-body);
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}
.bundle-card .btn { margin-top: 1rem; }
.bundle-note {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.7);
  text-align: center;
  max-width: 640px;
  margin: 2rem auto 0;
}
.bundle-note .icon-wrap { margin-right: 0.25rem; }

/* ========== 6. Timeline ========== */
.timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
}
.timeline.timeline-4 { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
@media (max-width: 768px) {
  .timeline { grid-template-columns: 1fr; gap: 1rem; }
  .timeline-connector { display: none; }
}
.timeline-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s, transform 0.3s ease;
}
.timeline-step:hover { border-color: var(--accent); transform: translateY(-4px); }
.timeline-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
}
.timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.timeline-title { font-family: var(--font-body); font-size: 1.5rem; font-weight: 600; margin: 0 0 0.5rem; }
.timeline-desc { font-family: var(--font-body); margin: 0; font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 300; line-height: 1.7; color: rgba(240, 237, 232, 0.7); }

/* ========== 7. Résultats ========== */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
.metric {
  text-align: center;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s, transform 0.3s ease;
}
.metric:hover { border-color: var(--accent); transform: translateY(-4px); }
.metric-value { font-family: var(--font-body); font-size: 2rem; font-weight: 700; color: var(--accent); display: inline; }
.metric-suffix { font-family: var(--font-body); font-size: 2rem; font-weight: 700; color: var(--accent); }
.metric-text { display: block !important; margin-bottom: 0.25rem; }
.metric-label { font-family: var(--font-body); display: block; font-size: 0.9rem; font-weight: 400; line-height: 1.6; color: rgba(240, 237, 232, 0.7); margin-top: 0.25rem; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s ease;
}
.testimonial:hover { border-color: var(--accent); transform: translateY(-4px); }
.testimonial-text { font-family: var(--font-body); font-style: italic; margin: 0 0 1rem; font-size: 0.9rem; font-weight: 400; line-height: 1.6; }
.testimonial-author { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(240, 237, 232, 0.7); margin: 0; }
.testimonial-badge {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(200, 149, 92, 0.4);
  border-radius: 999px;
}
.avant-apres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 600px) { .avant-apres-grid { grid-template-columns: 1fr; } }
.avant-apres-col {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.avant-col { border-color: rgba(255, 68, 68, 0.2); }
.apres-col { border-color: rgba(200, 149, 92, 0.4); }
.avant-apres-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.avant-apres-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
}
.avant-apres-list li { padding: 0.2rem 0; }

/* ========== 8. FAQ (accordion slide-down) ========== */
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-body);
  width: 100%;
  padding: 1.1rem 0;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--accent); transition: transform 0.3s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { color: var(--accent); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-out;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p {
  font-family: var(--font-body);
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(240, 237, 232, 0.7);
}

/* ========== 9. CTA Final ========== */
.cta-final { background: var(--card-bg); }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ========== 10. Footer ========== */
.footer {
  padding: var(--section-pad) 0 2rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
}
.footer-tagline { font-family: var(--font-body); margin: 0.5rem 0 0; font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 300; line-height: 1.7; color: rgba(240, 237, 232, 0.7); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; line-height: 1.6; color: rgba(240, 237, 232, 0.7); }
.footer-links a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 0.25rem; text-align: right; }
@media (max-width: 768px) { .footer-contact { text-align: center; } }
.footer-contact a { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; line-height: 1.6; }
.footer-copy { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(240, 237, 232, 0.5); margin: 0; text-align: center; }

/* ========== Scroll reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal.revealed[data-stagger="0"] { transition-delay: 0s; }
.reveal.revealed[data-stagger="1"] { transition-delay: 0.1s; }
.reveal.revealed[data-stagger="2"] { transition-delay: 0.2s; }
.reveal.revealed[data-stagger="3"] { transition-delay: 0.3s; }

/* ========== Bouton WhatsApp fixe ========== */
#whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
  text-decoration: none;
}
#whatsapp-btn:hover {
  transform: scale(1.1);
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}
