/* ── HERO LEGAL ── */
.legal-hero {
  padding: 140px 20px 80px;
  text-align: center;
  background: linear-gradient(180deg, #1a1a1a 0%, #161616 100%);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 180, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease forwards;
}

.legal-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.legal-hero p {
  font-size: 16px;
  color: #777;
  line-height: 1.6;
}

/* ── CONTENU ── */
.legal-content {
  padding: 80px 20px 100px;
  background: #0f0f0f;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-intro {
  background: #131313;
  border-left: 3px solid #f5b400;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 60px;
}

.legal-intro p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.8;
  margin: 0;
}

.legal-section {
  margin-bottom: 50px;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e1e1e;
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f5b400;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 15px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: #f5b400;
  text-decoration: underline;
  transition: color 0.3s;
}

.legal-section a:hover {
  color: #ffd54f;
}

/* Liste */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.legal-list li {
  font-size: 15px;
  color: #888;
  line-height: 1.8;
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.legal-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #f5b400;
  font-weight: 700;
}

/* Grille d'infos */
.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.legal-info-item {
  background: #131313;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-info-item strong {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.legal-info-item span {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

/* Note */
.legal-note {
  background: rgba(245, 180, 0, 0.08);
  border: 1px solid rgba(245, 180, 0, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

.legal-note strong {
  color: #f5b400;
}

/* Highlight */
.legal-highlight {
  background: #131313;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 24px;
}

.legal-highlight p {
  margin-bottom: 12px;
}

.legal-highlight p:last-child {
  margin-bottom: 0;
}

.legal-highlight strong {
  color: #f5b400;
}

/* Grille de droits */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.right-item {
  background: #131313;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.right-item:hover {
  border-color: rgba(245, 180, 0, 0.3);
  transform: translateY(-4px);
}

.right-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.right-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.right-item p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.legal-cta {
  background: linear-gradient(135deg, #141414 0%, #111 100%);
  border: 1px solid #1e1e1e;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 60px;
}

.legal-cta h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.legal-cta p {
  font-size: 15px;
  color: #777;
  margin-bottom: 28px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-info-grid {
    grid-template-columns: 1fr;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .legal-cta {
    padding: 36px 24px;
  }

  .legal-cta h3 {
    font-size: 22px;
  }
}