/* CGV — chargé après styles.css */
/* Hero CGV */
.hero-cgv {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-cgv h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-cgv .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Pill badge */
.pill {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CGV Content */
.cgv-content {
  padding: 60px 0 80px;
}

.cgv-article {
  max-width: 900px;
  margin: 0 auto;
}

.cgv-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.cgv-section:last-child {
  border-bottom: none;
}

.cgv-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.section-number {
  color: var(--primary);
  font-weight: 700;
}

.cgv-section h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 24px;
  color: var(--accent);
}

.cgv-section p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

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

/* CGV list (for bullet points in sections) */
.cgv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.cgv-list li {
  color: var(--text-muted);
  line-height: 1.8;
  padding: 4px 0 4px 24px;
  position: relative;
  font-size: 0.95rem;
}

.cgv-list li::before {
  content: "▸";
  position: absolute;
  left: 4px;
  color: var(--primary);
  font-weight: 700;
}

/* Highlight Box for important sections */
.highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.highlight-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.highlight-box p {
  color: var(--text-muted);
}

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

/* Warning variant for highlight box */
.highlight-box--warning {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
}

.highlight-box--warning h3 {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-cgv {
    padding: 60px 0 40px;
  }

  .cgv-content {
    padding: 40px 0 60px;
  }

  .cgv-section h2 {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cgv-section h3 {
    font-size: 1.2rem;
  }

  .highlight-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-cgv h1 {
    font-size: 1.75rem;
  }

  .cgv-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .cgv-section h2 {
    font-size: 1.35rem;
  }
}

