:root {
  --accent: #2B6B96;      /* bleu téléphone Mobiqube */
  --accent-soft: #52A1D5;
  --ink: #0B2D5C;         /* bleu foncé texte */
  --body: #2a2e35;
  --muted: #6b7280;
  --bg: #ffffff;
  --line: #e6e8ec;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--body);
  font-size: 17px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Coming soon ─────────────────────────────── */
main.coming-soon {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 22px;
}
.logo { width: 340px; max-width: 82%; height: auto; }
h1 {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.tagline {
  max-width: 540px;
  color: var(--body);
  font-size: 1.1em;
}
.badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.8em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 0; /* boutons carrés */
}

/* ── Pages légales ───────────────────────────── */
header.legal-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 16px 24px;
}
header.legal-header .back {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95em;
}
main.legal {
  flex: 1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px;
}
main.legal h1 {
  font-size: 1.7em;
  margin-bottom: 20px;
}
main.legal h2 {
  font-size: 1.15em;
  color: var(--ink);
  margin: 24px 0 8px;
}
main.legal p { margin-bottom: 12px; }

/* ── Footer ──────────────────────────────────── */
footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
footer nav a { color: var(--body); font-size: 0.9em; }
footer nav a:hover { color: var(--accent); }
footer .copy { color: var(--muted); font-size: 0.85em; }

/* ── Bannière cookies ────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 2px solid var(--accent);
  padding: 14px 24px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  z-index: 9999;
}
#cookie-banner .inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between;
}
#cookie-banner p { flex: 1; min-width: 250px; margin: 0; font-size: 13px; color: var(--muted); }
#cookie-banner button {
  background: var(--accent); color: #fff; border: none; border-radius: 0;
  padding: 8px 20px; cursor: pointer; font-size: 13px; font-weight: 600; font-family: inherit;
}

@media (max-width: 720px) {
  h1 { font-size: 1.6em; }
  .logo { width: 250px; }
}
