@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2f45;
  --gold: #f5a623;
  --gold-light: #ffd166;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --text: #1a1a2e;
  --text-soft: #5a6a7a;
  --border: rgba(13,27,42,0.08);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── UTILS ────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

h1, h2, h3 { font-family: 'Syne', sans-serif; }

h1 {
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.text-gold { color: var(--gold); }
.text-soft { color: var(--text-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,166,35,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(245,166,35,0.15);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 32px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-1 { opacity: 0; animation: fadeUp 0.7s ease 0.1s forwards; }
.anim-2 { opacity: 0; animation: fadeUp 0.7s ease 0.25s forwards; }
.anim-3 { opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards; }
.anim-4 { opacity: 0; animation: fadeUp 0.7s ease 0.55s forwards; }
.anim-5 { opacity: 0; animation: fadeUp 0.7s ease 0.7s forwards; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(245,166,35,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .nav-toggle { display: flex; }

  /* Hero mobile */
  .hero { overflow-x: hidden; }
  .hero .container { padding: 0 20px; }
  .hero-content { width: 100%; max-width: 100%; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }

  /* Texte */
  h1 { font-size: clamp(28px, 9vw, 48px) !important; letter-spacing: -0.5px; word-break: break-word; overflow-wrap: break-word; }
  h2 { font-size: clamp(22px, 7vw, 36px) !important; }
  .hero-desc { font-size: 16px !important; }

  /* Grilles */
  .why-grid { grid-template-columns: 1fr !important; }
  .offers-preview-grid { grid-template-columns: 1fr !important; }
  .stats-band .container { flex-direction: column; gap: 24px; }
  .testi-grid { grid-template-columns: 1fr !important; }

  /* Section */
  .section { padding: 60px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  /* Fix débordements */
  * { max-width: 100%; }
  img { max-width: 100%; height: auto; }
  .container { padding-left: 20px !important; padding-right: 20px !important; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px !important; line-height: 1.1; }
  h2 { font-size: 22px !important; }
  .hero { padding-top: 88px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-item { padding: 20px 12px !important; }
  .stat-num { font-size: 30px !important; }
  .offer-card { padding: 24px !important; }
  .why-visual, .why-text { padding: 0 !important; }
}
