.mentions-legales-page {
  padding: 6rem 0 4rem;
  background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 50%);
  min-height: 100vh;
}

[data-theme='dark'] .mentions-legales-page {
  background: linear-gradient(to bottom, var(--color-bg) 0%, #0f1419 50%);
}

.mentions-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === EN-TÊTE === */

.mentions-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.6s ease;
}

.mentions-breadcrumb {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

[data-theme='dark'] .mentions-breadcrumb {
  color: #9ca3af;
}

.mentions-breadcrumb a {
  color: #0170a8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mentions-breadcrumb a:hover {
  color: #19b8d8;
}

.separator {
  margin: 0 0.5rem;
  color: #d1d5db;
}

.mentions-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0170a8, #19b8d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mentions-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

[data-theme='dark'] .mentions-subtitle {
  color: #9ca3af;
}

.mentions-date {
  font-size: 0.875rem;
  color: #9ca3af;
  font-style: italic;
}

/* === TABLE DES MATIÈRES === */

.mentions-toc {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

[data-theme='dark'] .mentions-toc {
  background: rgba(31, 41, 55, 0.8);
  border-color: #374151;
}

.toc-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-title::before {
  content: '📑';
  font-size: 1.5rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.toc-list li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #374151;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

[data-theme='dark'] .toc-list li a {
  color: #d1d5db;
}

.toc-list li a:hover {
  background: linear-gradient(135deg, rgba(1, 112, 168, 0.1), rgba(25, 184, 216, 0.1));
  color: #0170a8;
  transform: translateX(8px);
}

[data-theme='dark'] .toc-list li a:hover {
  color: #19b8d8;
}

/* === SECTIONS === */

.mentions-sections {
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.mentions-section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  scroll-margin-top: 100px;
  transition: all 0.3s ease;
}

.mentions-section:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

[data-theme='dark'] .mentions-section {
  background: rgba(31, 41, 55, 0.8);
  border-color: #374151;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
}

[data-theme='dark'] .section-header {
  border-bottom-color: #374151;
}

.section-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0170a8, #19b8d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.section-content {
  line-height: 1.8;
  color: #374151;
}

[data-theme='dark'] .section-content {
  color: #d1d5db;
}

.section-content p {
  margin-bottom: 1.25rem;
}

.section-content h3 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 2rem 0 1rem;
}

.section-content ul,
.section-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 0;
}

.section-content li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.section-content strong {
  color: var(--color-text);
  font-weight: 600;
}

.section-content a {
  color: #0170a8;
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 112, 168, 0.3);
  transition: all 0.3s ease;
}

.section-content a:hover {
  color: #19b8d8;
  border-bottom-color: #19b8d8;
}

/* === LISTES D'INFORMATIONS === */

.info-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 0.75rem;
  border-left: 4px solid #0170a8;
}

[data-theme='dark'] .info-list {
  background: rgba(17, 24, 39, 0.5);
}

.info-list dt {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

[data-theme='dark'] .info-list dt {
  color: #9ca3af;
}

.info-list dd {
  margin: 0 0 1rem 0;
  color: var(--color-text);
  font-weight: 500;
}

.info-list dd:last-child {
  margin-bottom: 0;
}

/* === BOÎTES D'INFORMATION === */

.info-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  border-left: 4px solid;
}

.info-box p,
.info-box ul {
  margin: 0;
}

.info-box ul {
  margin-top: 0.75rem;
}

.info-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.info-note {
  background: rgba(1, 112, 168, 0.05);
  border-left-color: #0170a8;
}

.info-note .info-icon {
  color: #0170a8;
}

.info-warning {
  background: rgba(251, 146, 60, 0.05);
  border-left-color: #fb923c;
}

.info-warning .info-icon {
  color: #fb923c;
}

.info-success {
  background: rgba(16, 185, 129, 0.05);
  border-left-color: #10b981;
}

.info-success .info-icon {
  color: #10b981;
}

/* === MÉTHODES DE CONTACT === */

.contact-methods {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(1, 112, 168, 0.05);
  border-color: #0170a8;
  transform: translateX(4px);
}

[data-theme='dark'] .contact-method {
  background: rgba(17, 24, 39, 0.5);
  border-color: #374151;
}

.contact-icon {
  flex-shrink: 0;
  color: #0170a8;
}

[data-theme='dark'] .contact-icon {
  color: #19b8d8;
}

.contact-method strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.contact-method p {
  margin: 0;
  color: #6b7280;
}

[data-theme='dark'] .contact-method p {
  color: #9ca3af;
}

/* === ANIMATIONS === */

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

/* === RESPONSIVE === */

@media (max-width: 768px) {
  .mentions-legales-page {
    padding: 4rem 0 3rem;
  }

  .mentions-container {
    padding: 0 1rem;
  }

  .mentions-title {
    font-size: 2rem;
  }

  .mentions-section {
    padding: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .section-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .mentions-toc {
    padding: 1.5rem;
  }

  .toc-list {
    gap: 0.5rem;
  }

  .info-list,
  .contact-method {
    padding: 1rem;
  }
}