/* ============================================
   PAGES LÉGALES - SXM SUCCESS TRAINING
   Aligné sur le design de la landing refonte
   ============================================ */

/* Import base styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #0E1116;
  color: #F9FAFB;
  line-height: 1.7;
  font-size: 17px;
}

a {
  color: #f47c61;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 17, 22, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo-link {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 40px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  color: #9CA3AF;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: #F9FAFB;
  opacity: 1;
}

/* --- MAIN CONTENT --- */
.main-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.main-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F9FAFB;
  margin: 0 0 2rem 0;
  text-align: center;
}

/* --- SECTIONS --- */
.section {
  margin-bottom: 2.5rem;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f47c61;
  margin: 0 0 1rem 0;
}

.section p,
.section li {
  color: #9CA3AF;
  margin: 0 0 0.75rem 0;
  line-height: 1.8;
}

.section p:last-child {
  margin-bottom: 0;
}

.section ul {
  padding-left: 20px;
  margin: 0;
}

.section li {
  margin-bottom: 0.5rem;
}

.section strong {
  color: #F9FAFB;
}

/* --- BUTTONS --- */
.cta-buttons {
  text-align: center;
  margin-top: 3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  background-color: #f47c61;
  color: #fff;
}

.button:hover {
  background-color: #e45f48;
  transform: translateY(-2px);
  opacity: 1;
}

/* --- FOOTER --- */
.site-footer {
  background-color: #0a0c0f;
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #6B7280;
}

.site-footer .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #9CA3AF;
  margin: 0 12px;
}

.footer-links a:hover {
  color: #F9FAFB;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .main-container {
    padding: 100px 16px 60px;
  }
  
  .section {
    padding: 20px;
  }
}
