/* ============================
   HOME – Go Numérique
   Hero, features, etc.
   ============================ */

/* ------------ HERO ------------ */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.hero-left h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #0f172a;
}

.hero-subtitle {
  margin: 0 0 18px;
  font-size: 1rem;
  color: #4b5563;
}

.hero-cta {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: #4b5563;
}

.hero-bullets li {
  margin-bottom: 4px;
}

/* Hero droite */
.hero-right {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: radial-gradient(circle at top left, #38bdf8 0, #0f172a 60%);
  color: #e5e7eb;
  border-radius: 20px;
  padding: 20px 18px;
  max-width: 340px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45);
}

.hero-card p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.hero-card span {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* ------------ Cartes formations / ebooks ------------ */

.formation-card .formation-rncp {
  font-size: 0.8rem;
  color: #4b5563;
  margin-bottom: 6px;
}

.formation-card .formation-resume {
  font-size: 0.9rem;
  color: #6b7280;
}

.ebook-card .ebook-author {
  font-size: 0.85rem;
  color: #6b7280;
}

.ebook-card .ebook-dates {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ------------ Features (méthode) ------------ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.feature {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 14px 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #0f172a;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* ------------ Section CTA ------------ */

.section-cta {
  text-align: center;
  padding: 28px 16px;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  border-radius: 18px;
  color: #e5e7eb;
}

.section-cta h2 {
  color: #f9fafb;
  margin-bottom: 8px;
}

.section-cta p {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

/* ------------ Responsive ------------ */

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-left h1 {
    font-size: 1.6rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-alt {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
  }
}





/*CUSTOM*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  color: #0f172a;
}
.faq-answer {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #4b5563;
}
