/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--bg);
}
.field-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.field-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(91,107,248,0.08) 0%, transparent 70%),
              radial-gradient(ellipse at center, transparent 30%, var(--bg) 85%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px 48px;
  text-align: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2.8rem, 11vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: #fff;
}
.t-accent { color: var(--primary); }
.t-dim    { color: var(--text-muted); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-cta-hero {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  min-width: 200px;
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-cta-hero { text-align: center; }
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
  max-width: 400px;
}
.hero-stat {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.stat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── COUNTDOWN ───────────────────────────────────── */
.countdown-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.countdown-inner { text-align: center; }
.countdown-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.countdown-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px 16px;
  min-width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.countdown-box span:first-child {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cd-unit {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.countdown-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── SECTIONS COMMUNES ───────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 10px 0 36px;
  color: #fff;
}

/* ── COMMENT ÇA MARCHE (TIMELINE) ───────────────── */
.how-section { padding: 72px 0; }
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 20px;
}
.steps-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--primary), rgba(91,107,248,0.1));
}
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 36px 0;
  position: relative;
}
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}
.step-content { flex: 1; padding-top: 8px; }
.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.step-tag {
  display: inline-block;
  background: rgba(91,107,248,0.12);
  border: 1px solid rgba(91,107,248,0.25);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── SYSTÈME DE POINTS ───────────────────────────── */
.points-section { padding: 72px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.points-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
}
.points-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.points-3 .points-num { color: var(--primary); }
.points-1 .points-num { color: var(--text-muted); }
.points-0 .points-num { color: #3a3a50; }
.points-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.points-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.points-tip {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.points-tip strong { color: #fff; }

/* ── FONCTIONNALITÉS ─────────────────────────────── */
.features-section { padding: 72px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
}
.feature-icon { font-size: 1.5rem; display: block; margin-bottom: 10px; }
.feature-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-section { padding: 72px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CTA FINAL ───────────────────────────────────── */
.cta-section { padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-title {
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin: 10px 0 16px;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.btn-cta-final {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
}
.cta-login { font-size: 0.88rem; color: var(--text-muted); }
.cta-login a { color: var(--primary); font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  background: var(--surface);
}
.footer-inner { text-align: center; }
.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: #fff; }
