/* ══════════════════════════════════════
   LANDING PAGE
══════════════════════════════════════ */

.container { max-width: 960px; }

/* ── NAV ── */
.landing-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── HERO ── */
.landing-hero {
  text-align: center;
  padding: 5rem 0 4rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 147, 58, 0.1);
  border: 1px solid rgba(201, 147, 58, 0.3);
  color: var(--or-sombre);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.landing-hero h1 { max-width: 700px; margin: 0 auto 1.25rem; }
.landing-hero p  { max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large { padding: 0.9rem 2rem; font-size: 0.82rem; }

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  margin: 4rem 0;
}

.how-it-works h2 {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--texte);
  margin-bottom: 3rem;
}

.steps-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-showcase { text-align: center; }

.step-number {
  width: 52px; height: 52px;
  background: var(--texte);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 auto 1rem;
  font-family: var(--ff-serif);
}

.step-showcase h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--texte);
}

.step-showcase p {
  color: var(--texte-2);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── FEATURES ── */
.features-section { padding: 2rem 0 4rem; }

.features-section h2 {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--texte);
  margin-bottom: 3rem;
}

.features-grid-landing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-landing {
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}

.feature-icon-landing { font-size: 2rem; margin-bottom: 0.75rem; }

.feature-landing h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--texte);
}

.feature-landing p {
  color: var(--texte-2);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── CTA FINAL ── */
.cta-final {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--texte);
  border-radius: var(--radius-lg);
  margin: 2rem 0 4rem;
}

.cta-final h2 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-final .btn-primary {
  background: var(--or);
  border-color: var(--or);
  color: white;
}

.cta-final .btn-primary:hover {
  background: var(--or-sombre);
  border-color: var(--or-sombre);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .steps-showcase        { grid-template-columns: repeat(2, 1fr); }
  .features-grid-landing { grid-template-columns: 1fr; }
  .landing-nav .btn-primary { display: none; }
  .hero-cta              { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .steps-showcase { grid-template-columns: 1fr; }
  .how-it-works   { padding: 2.5rem 1.5rem; }
}
