:root {
  --bleu-principal: #061B36;
  --bleu-secondaire: #0B3F82;
  --dore: #B98A3A;
  --blanc: #FFFFFF;
  --gris-clair: #E5E6E9;
  --fond-doux: #F7F9FC;
  --texte: #061B36;
  --texte-secondaire: #4D5C6D;
  --ombre: 0 18px 45px rgba(6, 27, 54, 0.10);
  --ombre-soft: 0 10px 28px rgba(6, 27, 54, 0.07);
  --radius: 18px;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* BOUTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--bleu-secondaire);
  border-color: var(--bleu-secondaire);
  color: var(--blanc);
}

.btn-primary:hover {
  background: var(--bleu-principal);
  border-color: var(--bleu-principal);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--blanc);
  border-color: var(--bleu-secondaire);
  color: var(--bleu-secondaire);
}

.btn-secondary:hover {
  background: var(--fond-doux);
  transform: translateY(-2px);
}

/* TITRES COMMUNS */

.eyebrow {
  color: var(--bleu-secondaire);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 74px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title span,
.section-label {
  color: var(--bleu-secondaire);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--bleu-principal);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-top: 8px;
}

.section-title.compact {
  margin-bottom: 34px;
}

/* RESPONSIVE GLOBAL */

@media (max-width: 760px) {
  .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }
}