:root {
  --primary: #01498e;
  --primary-dark: #0a1f8f;
  --accent: #c67c58;
  --accent-dark: #6a3f24;
  --bg-light: #f7f8fb;
  --text: #1f2937;
  --muted: #667085;
  --white: #ffffff;
  --border: #dce8f5;
  --shadow: 0 20px 60px rgba(1, 73, 142, 0.12);
  --radius: 20px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

.hide-mobile {
  display: block;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  background: rgba(1, 73, 142, 0.08);
  color: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.footer-col h3::after,
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 3px;
  background: #d4a64a; /* doré en dur */
  border-radius: 999px;
  z-index: 2;
  transform: translateX(0);
  transition: transform 0.35s ease;
}
.btn-primary,
.btn-footer,
.btn-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 700;
}

.btn-primary:hover,
.btn-footer:hover,
.btn-mobile-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: 0.3s ease;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
}
/* ===== ARRONDI FINAL DES BOUTONS SIMULATEUR ===== */

.nav-actions .btn-primary,
.hero-cta,
.btn-footer,
.btn-mobile-cta {
  border-radius: 22px !important;
}