/* ══ RESET ══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ══ VARIABLES ══════════════════════════════════════════════════ */
:root {
  --ink:        #0d0d12;
  --white:      #ffffff;
  --off:        #f8f7f5;
  --muted:      #f2f0ec;
  --gray-100:   #ebebeb;
  --gray-300:   #c8c8c8;
  --gray-500:   #8a8a8a;
  --gray-700:   #4a4a4a;

  /* Couleurs vives charte */
  --blue:       #1A56FF;
  --blue-light: #e8eeff;
  --coral:      #FF5C5C;
  --coral-light:#fff0f0;
  --violet:     #9B59FF;
  --violet-light:#f3eeff;
  --gold:       #f59e0b;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow:    0 4px 24px rgba(13,13,18,0.07);
  --shadow-lg: 0 16px 56px rgba(13,13,18,0.13);
}

/* ══ BASE ═══════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ══ TYPOGRAPHIE ════════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* ══ NAV ════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo-mark {
  font-size: 22px;
  color: var(--blue);
  line-height: 1;
}
.logo-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.logo-name strong { font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: opacity .2s, transform .2s !important;
}
.nav-cta:hover { opacity: 0.85 !important; transform: translateY(-1px) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 28px 20px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.nav-drawer a:last-child { border-bottom: none; }
.drawer-cta {
  background: var(--ink);
  color: var(--white) !important;
  text-align: center;
  padding: 13px !important;
  border-radius: var(--radius) !important;
  margin-top: 8px;
  font-weight: 600;
  border-bottom: none !important;
}

/* ══ HERO ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  top: -150px; left: -100px;
  opacity: 0.3;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  opacity: 0.25;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  top: 40%; left: 55%;
  opacity: 0.15;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  animation: fadeUp .7s ease both;
}
.pill-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.4)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp .7s .1s ease both;
  letter-spacing: -0.02em;
}
.hero-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 50%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
  animation: fadeUp .7s .2s ease both;
}
.hero-desc strong { color: rgba(255,255,255,0.9); }

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 64px;
  animation: fadeUp .7s .3s ease both;
}
.btn-hero {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--white);
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 32px rgba(26,86,255,0.4);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(26,86,255,0.5); }
.btn-ghost {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 100px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--white); }

.hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px 40px;
  gap: 0;
  animation: fadeUp .7s .4s ease both;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hstat strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hstat span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
}
.hstat-sep {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.15);
}

@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ══ MÉTHODE ════════════════════════════════════════════════════ */
.methode {
  padding: 110px 0;
  background: var(--off);
  border-top: 1px solid var(--gray-100);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-n {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 16px;
}
.step-ico { font-size: 32px; margin-bottom: 16px; }
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.step p { font-size: 15px; color: var(--gray-700); line-height: 1.65; }

/* ══ POURQUOI ═══════════════════════════════════════════════════ */
.pourquoi { padding: 110px 0; }
.pq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pq-body {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 32px;
}
.pq-checks { display: flex; flex-direction: column; gap: 14px; }
.pqc {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}
.pqc span {
  width: 24px; height: 24px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sc-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .3s;
}
.sc-card:hover { transform: translateY(-4px); }
.sc-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}
.sc-lbl { font-size: 13px; font-weight: 500; opacity: .75; }
.sc-blue   { background: var(--blue-light); color: var(--blue); }
.sc-coral  { background: var(--coral-light); color: var(--coral); }
.sc-violet { background: var(--violet-light); color: var(--violet); }
.sc-dark   { background: var(--ink); color: var(--white); }
.sc-dark .sc-lbl { opacity: .6; }

/* ══ PRODUITS ═══════════════════════════════════════════════════ */
.produits {
  padding: 110px 0;
  background: var(--off);
  border-top: 1px solid var(--gray-100);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
  align-items: start;
}

.pcard {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.pcard-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0;
}
[data-tier="starter"] .pcard-bar { background: var(--blue); }
[data-tier="starter"] { border-top-color: var(--blue); }
[data-tier="premium"] .pcard-bar { background: var(--coral); }
[data-tier="premium"] { border-top-color: var(--coral); }
[data-tier="elite"] .pcard-bar { background: var(--violet); }
[data-tier="elite"] { border-top-color: var(--violet); }

.pcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 8px;
}
.pcard-tier {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
[data-tier="starter"] .pcard-tier { color: var(--blue); }
[data-tier="premium"] .pcard-tier { color: var(--coral); }
[data-tier="elite"] .pcard-tier { color: var(--violet); }

.pcard-niche {
  font-size: 11px;
  color: var(--gray-500);
  background: var(--muted);
  padding: 4px 10px;
  border-radius: 100px;
}

.pcard-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.p-old {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gray-300);
  text-decoration: line-through;
}
.p-main {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.p-save {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.pcard-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--gray-700);
}
.pcard-feats li { display: flex; align-items: flex-start; gap: 10px; }
.pcard-feats li span {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pcard-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: opacity .2s, transform .2s;
  color: var(--white);
}
.pcard-btn:hover { opacity: .88; transform: translateY(-1px); }
[data-tier="starter"] .pcard-btn { background: var(--blue); }
[data-tier="premium"] .pcard-btn { background: var(--coral); }
[data-tier="elite"] .pcard-btn { background: var(--violet); }

/* ══ PACK TOTAL ═════════════════════════════════════════════════ */
.pack {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}
.pack-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(155,89,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.pack-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #f97316);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.pack-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.pack-left { flex: 1; }
.pack-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pack-title-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 4px 12px;
  border-radius: 100px;
  vertical-align: middle;
  display: inline-block;
}
.pack-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.65;
}
.pack-desc strong { color: rgba(255,255,255,0.85); }
.pack-items { display: flex; flex-direction: column; gap: 10px; }
.pi {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.pi span { color: #4ade80; font-weight: 700; }

.pack-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 6px;
}
.pack-old {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.pack-price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.pack-eco {
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
}
.pack-btn {
  background: var(--white);
  color: var(--ink);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-top: 12px;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
  display: block;
}
.pack-btn:hover { opacity: .9; transform: translateY(-2px); }

/* ══ SÉCURITÉ ═══════════════════════════════════════════════════ */
.securite {
  padding: 60px 0;
  border-top: 1px solid var(--gray-100);
}
.sec-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--muted);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
}
.sec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
}
.sec-ico { font-size: 28px; }
.sec-item div { display: flex; flex-direction: column; }
.sec-item strong { font-size: 14px; font-weight: 600; color: var(--ink); }
.sec-item small { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.sec-sep { width: 1px; height: 48px; background: var(--gray-100); }

/* ══ FAQ ════════════════════════════════════════════════════════ */
.faq {
  padding: 110px 0;
  background: var(--off);
  border-top: 1px solid var(--gray-100);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-sub {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-top: -8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  gap: 16px;
  transition: color .2s;
}
.faq-item:hover .faq-q { color: var(--blue); }
.fi {
  font-size: 22px;
  font-weight: 300;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .fi { transform: rotate(45deg); color: var(--blue); }
.faq-a {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ══ CTA FINAL ══════════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 110px 0;
  background: var(--ink);
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; }
.cta-orb-a {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,255,0.25) 0%, transparent 70%);
  top: -150px; left: -100px;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-orb-b {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(155,89,255,0.2) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--white);
  padding: 17px 44px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 32px rgba(26,86,255,0.4);
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(26,86,255,0.5); }

/* ══ FOOTER ═════════════════════════════════════════════════════ */
.footer {
  background: #080810;
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  gap: 80px;
  margin-bottom: 56px;
}
.footer-brand {
  flex: 1;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 14px;
}
.footer-brand .logo-mark { color: var(--blue); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-name strong { color: var(--white); }

.footer-cols { display: flex; gap: 64px; }
.fcol { display: flex; flex-direction: column; gap: 12px; }
.fcol-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 6px;
}
.fcol a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color .2s;
}
.fcol a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ══ REVEAL ANIMATION ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease var(--d, 0s), transform .7s ease var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .pack-body { flex-direction: column; }
  .pack-right { align-items: flex-start; }
  .sec-strip { flex-wrap: wrap; justify-content: flex-start; padding: 24px; gap: 20px; }
  .sec-item { padding: 0 20px 0 0; }
  .sec-sep { display: none; }
  .hero-stats { padding: 18px 24px; gap: 10px; }
  .hstat { padding: 0 18px; }
  .hstat-sep { display: none; }
  .hero-actions { flex-direction: column; }
}
@media (max-width: 640px) {
  .pack { padding: 28px 24px; }
  .sc-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-cols { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: transparent; border: none; }
  .hstat { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px; }
}

/* ══ AVIS ═══════════════════════════════════════════════════════ */
.avis {
  padding: 100px 0 0;
  overflow: hidden;
}
.avis .container { margin-bottom: 48px; }

.avis-track-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
  /* Dégradé masquant les bords */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.avis-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollAvis 40s linear infinite;
}
.avis-track:hover { animation-play-state: paused; }

@keyframes scrollAvis {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.avis-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  width: 320px;
  flex-shrink: 0;
  transition: box-shadow .3s, transform .3s;
}
.avis-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.avis-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.avis-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  /* Flou simulant une photo de profil flouée */
  filter: blur(0.5px);
  position: relative;
  overflow: hidden;
}
.avis-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(3px);
  opacity: 0.4;
}
.avis-avatar span { position: relative; z-index: 1; }

.avis-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.avis-stars {
  font-size: 13px;
  color: #f59e0b;
  letter-spacing: 1px;
}

.avis-text {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.avis-text::before { content: '"'; }
.avis-text::after  { content: '"'; }

.avis-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--muted);
  color: var(--gray-500);
}
