@charset "UTF-8";
:root {
  /* Palette 3 ? Vivante & audacieuse */
  --primary: #00BFFF;  /* Bleu cyan */
  --accent:  #E4007C;  /* Magenta */
  --cta:     #FFB100;  /* Jaune orangé */
  --success: #1DD1A1;  /* Vert turquoise */
  --ink:     #2C2C2C;  /* Gris nuit */
  --bg:      #FFFFFF;  /* Blanc */

  /* Neutres & helpers */
  --muted:   #F5F7FA;
  --border:  #E9EEF5;
  --shadow:  0 10px 24px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.06);
  --radius:  18px;
  --radius-sm: 12px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout helpers */
.container { max-width: var(--container); margin-inline: auto; padding: 0 20px; }
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

@media (max-width: 960px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .only-desktop { display: none !important; }
}

/* Simple utilities */
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.center { text-align:center; }


/* Footer */
footer { background: var(--ink); color: rgba(255,255,255,.9); padding: 48px 0; }
footer a { color: rgba(255,255,255,.95); text-decoration: none; transition: color .2s ease; }

.footer-grid { display: grid; gap: 32px; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: start; }
.footer-brand { display: flex; align-items: flex-start; gap: 16px; }
.footer-logo { width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--primary)); color: #fff; font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,.16); }
.footer-brand-text { display: flex; flex-direction: column; gap: 4px; }
.footer-brand-name { font-weight: 800; font-size: 1.1rem; }
.footer-tagline { margin: 0; color: rgba(255,255,255,.7); line-height: 1.4; }

.footer-nav { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.footer-heading { margin: 0; font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,.9); }
.footer-links { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.8); font-weight: 500; }
.footer-links a:hover, .footer-links a:focus { color: #fff; text-decoration: underline; }

.footer-meta { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer-note { color: rgba(255,255,255,.65); }
.footer-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-actions a { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-actions a:hover, .footer-actions a:focus { color: #fff; text-decoration: underline; }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-meta { flex-direction: column; align-items: flex-start; }
}
