:root {
  --bg-primary: #FAFAF9;
  --bg-secondary: #F5F5F4;
  --bg-card: #FFFFFF;
  --text-primary: #0C0A09;
  --text-secondary: #44403C;
  --text-muted: #78716C;
  --accent: #16A34A;
  --accent-blue: #2563EB;
  --accent-warning: #F97316;
  --accent-danger: #DC2626;
  --border: #E7E5E4;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px -2px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.05);
  --radius: 12px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === Util classes responsives ============================================ */
.split-2col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) {
  .split-2col { grid-template-columns: 1fr; gap: 24px; }
}

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,249,.97);
  /* PAS de backdrop-filter ici : ça crée un containing block qui casse les drawers `position: fixed` à l'intérieur */
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; position: relative;
}

/* === MEGA MENU === */
.site-nav > ul > li { position: relative; }
.site-nav > ul > li > a {
  padding: 8px 12px; display: inline-flex; align-items: center; gap: 4px;
  border-radius: 8px; transition: background .15s, color .15s;
  position: relative;
}
.site-nav > ul > li:hover > a,
.site-nav > ul > li:focus-within > a {
  background: var(--bg-secondary); color: var(--text-primary); text-decoration: none;
}

/* Caret ▾ uniquement sur items avec mega */
.site-nav > ul > li:has(> .mega) > a::after {
  content: '⌄';
  font-size: 1rem; line-height: 1;
  margin-top: -4px;
  opacity: .55;
  transition: transform .2s ease, opacity .2s ease;
}
.site-nav > ul > li:has(> .mega):hover > a::after,
.site-nav > ul > li:has(> .mega):focus-within > a::after {
  transform: rotate(180deg); opacity: 1;
}

/* Mega panel — garde-fou viewport + tailles raisonnables */
.site-nav .mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 24px; box-shadow: 0 24px 48px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  width: max-content;
  min-width: 540px; max-width: min(720px, calc(100vw - 32px));
  display: none; gap: 28px;
  z-index: 200;
}
/* Petit triangle pointant vers l'item parent */
.site-nav .mega::before {
  content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px; background: white;
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.site-nav > ul > li:hover > .mega,
.site-nav > ul > li:focus-within > .mega { display: grid; }
/* Hover-bridge : pas de fermeture entre item et mega */
.site-nav > ul > li:hover::before,
.site-nav > ul > li:focus-within::before {
  content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 18px; z-index: 199;
}

/* Anti-overflow : mega aligné à droite pour les 2 derniers items (Outils, Ressources) */
.site-nav > ul > li:nth-last-child(1) > .mega,
.site-nav > ul > li:nth-last-child(2) > .mega {
  left: auto; right: 0; transform: none;
}
.site-nav > ul > li:nth-last-child(1) > .mega::before,
.site-nav > ul > li:nth-last-child(2) > .mega::before {
  left: auto; right: 24px; transform: rotate(45deg);
}

/* Anti-overflow : mega aligné à gauche pour les 2 premiers items (Création, Optim) */
.site-nav > ul > li:nth-child(1) > .mega,
.site-nav > ul > li:nth-child(2) > .mega {
  left: 0; right: auto; transform: none;
}
.site-nav > ul > li:nth-child(1) > .mega::before,
.site-nav > ul > li:nth-child(2) > .mega::before {
  left: 24px; right: auto; transform: rotate(45deg);
}

.mega-2col { grid-template-columns: 1fr 1fr; }
.mega-3col { grid-template-columns: 1fr 1fr 1fr; min-width: 700px; }
.mega h6 {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); margin-bottom: 12px; font-weight: 700;
}
.mega ul { list-style: none; padding: 0; margin: 0; }
.mega li { margin-bottom: 8px; }
.mega a {
  color: var(--text-primary); font-size: .92rem; font-weight: 500;
  display: block; padding: 6px 8px; border-radius: 6px;
  transition: background .15s;
}
.mega a:hover { background: var(--bg-secondary); text-decoration: none; }
.mega a small { color: var(--text-muted); font-size: .78rem; display: block; }
.mega .mega-cta {
  grid-column: 1/-1; padding-top: 18px; border-top: 1px solid var(--border);
  margin-top: 8px; display: flex; justify-content: space-between; align-items: center;
}
.mega .mega-cta-link { color: var(--accent); font-weight: 600; font-size: .9rem; }
.mega .mega-feature {
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
  padding: 16px; border-radius: 10px; margin-top: 12px;
}
.mega .mega-feature strong { font-size: .92rem; display: block; margin-bottom: 4px; }
.mega .mega-feature small { font-size: .8rem; color: var(--text-secondary); }

/* Hamburger toggle (JS-based) */
.nav-toggle-input { display: none; }  /* gardé pour compat fallback */
.mobile-toggle {
  display: none; cursor: pointer; padding: 10px; border-radius: 8px;
  background: transparent; border: 0;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;  /* tap target 44px iOS guideline */
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.mobile-toggle span + span { margin-top: 5px; }
body.nav-open .mobile-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .mobile-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .mobile-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop sombre sous le drawer */
.nav-backdrop {
  display: none; position: fixed; inset: 0; top: 64px;
  background: rgba(0,0,0,.4); z-index: 98;
  opacity: 0; transition: opacity .3s ease;
}
body.nav-open .nav-backdrop {
  display: block; opacity: 1;
}

@media (max-width: 968px) {
  .mobile-toggle { display: flex; }
  .site-header .btn-header { display: none; }
  /* Header sans sticky sur mobile = pas de stacking context isolé →
     le nav (z-index 9999) reste vraiment au-dessus du backdrop (9998) */
  .site-header { position: relative !important; z-index: auto !important; }

  /* DRAWER MOBILE — brute force avec !important pour exclure tout conflit ancestor */
  nav.site-nav {
    position: fixed !important;
    top: 64px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 320px !important;
    max-width: 90vw !important;
    height: calc(100vh - 64px) !important;
    background: white !important;
    padding: 20px 20px 100px !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    transition: transform .3s ease !important;
    box-shadow: -8px 0 32px rgba(0,0,0,.15) !important;
    z-index: 9999 !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 !important;
  }
  body.nav-open nav.site-nav { transform: translateX(0) !important; }
  body.nav-open { overflow: hidden !important; }
  /* Backdrop sombre */
  .nav-backdrop {
    display: block !important;
    position: fixed !important; top: 64px !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: rgba(0,0,0,.4) !important;
    z-index: 9998 !important;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease !important;
  }
  body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

  .site-nav > ul { display: block; padding: 0; margin: 0; gap: 0; list-style: none; }
  .site-nav > ul > li {
    margin-bottom: 0; border-bottom: 1px solid var(--border); padding: 0;
  }
  .site-nav > ul > li:last-child { border-bottom: 0; }
  .site-nav > ul > li > a {
    font-size: 1rem; font-weight: 600; padding: 16px 8px;
    color: var(--text-primary); display: flex;
    justify-content: space-between; align-items: center;
    background: transparent !important;
  }
  .site-nav > ul > li:has(> .mega) > a::after {
    content: '⌄'; opacity: .5; font-size: 1.1rem;
  }
  .site-nav > ul > li > a:hover { background: transparent !important; }

  /* Mobile : mega = collapse fermé par défaut, ouvert au tap (via JS) */
  .site-nav .mega {
    display: none !important;
    position: static !important; transform: none !important;
    min-width: 0 !important; max-width: none !important;
    width: 100% !important;       /* override max-content du desktop */
    padding: 4px 0 12px 8px; box-shadow: none; border: 0;
    background: transparent; margin-top: 0;
    box-sizing: border-box;
  }
  .site-nav .mega * { max-width: 100%; box-sizing: border-box; }
  .site-nav .mega a { word-break: break-word; overflow-wrap: anywhere; }
  .site-nav .mega::before { display: none; }
  .site-nav > ul > li.is-open > .mega { display: block !important; }
  .site-nav > ul > li.is-open > a::after { transform: rotate(180deg); }

  .mega-2col, .mega-3col { display: block !important; grid-template-columns: none !important; min-width: 0 !important; }
  .mega h6 {
    margin-top: 12px; margin-bottom: 6px;
    font-size: .7rem; color: var(--text-muted);
  }
  .mega ul { padding: 0; margin: 0; list-style: none; }
  .mega li { margin-bottom: 0; }
  .mega a {
    font-size: .92rem; padding: 10px 8px;
    display: flex; flex-direction: column;
  }
  .mega a small { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
  .mega .mega-cta {
    flex-direction: column; gap: 10px; align-items: stretch;
    margin-top: 14px; padding-top: 14px;
  }
  .mega .mega-cta a { padding: 10px; }
  .mega .mega-feature { padding: 12px; margin: 8px 0; font-size: .9rem; }

  /* Mobile fixed CTA bar */
  .mobile-cta-fixed {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: white; padding: 10px 14px;
    border-top: 1px solid var(--border);
    display: flex; gap: 8px; z-index: 95;
    box-shadow: 0 -4px 12px rgba(0,0,0,.06);
  }
  .mobile-cta-fixed a {
    flex: 1; text-align: center; padding: 12px 10px;
    border-radius: 10px; font-weight: 600; font-size: .9rem;
    text-decoration: none; min-height: 44px;
    display: flex; align-items: center; justify-content: center;
  }
  .mobile-cta-fixed a.primary { background: var(--accent); color: white; }
  .mobile-cta-fixed a.secondary { border: 1.5px solid var(--border); color: var(--text-primary); }
  body { padding-bottom: 76px; }
}
@media (min-width: 969px) {
  .mobile-cta-fixed { display: none; }
  .nav-backdrop { display: none !important; }
}
.logo {
  font-weight: 800; font-size: 1.05rem; letter-spacing: -.5px;
  color: var(--text-primary);
}
.logo span { color: var(--accent); }
@media (min-width: 969px) {
  .site-nav > ul {
    display: flex; gap: 28px; list-style: none; padding: 0; margin: 0;
  }
  .site-nav > ul > li > a {
    color: var(--text-secondary); font-weight: 500; font-size: .95rem;
  }
  .site-nav > ul > li > a:hover { color: var(--text-primary); text-decoration: none; }
}
.btn-header {
  background: var(--text-primary); color: white;
  padding: 9px 18px; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: transform .2s;
}
.btn-header:hover { transform: translateY(-1px); text-decoration: none; }

/* === HERO === */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #fff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -150px; right: -150px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(22,163,74,.10) 0%, transparent 65%);
  z-index: 0; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -200px; left: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 65%);
  z-index: 0; pointer-events: none;
}

/* Hero with side image (silos, hubs) */
.hero-split {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: center;
}
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 968px) {
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; aspect-ratio: 16/9; }
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,163,74,.1); color: var(--accent);
  padding: 6px 14px; border-radius: 100px; font-size: .85rem;
  font-weight: 600; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(22,163,74,.2);
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05; letter-spacing: -.04em; font-weight: 800;
  margin-bottom: 24px; max-width: 880px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 1.25rem; color: var(--text-secondary);
  max-width: 680px; line-height: 1.6; margin-bottom: 36px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 64px;
}
.btn-primary, .btn-secondary {
  padding: 14px 24px; border-radius: 10px; font-weight: 600;
  font-size: 1rem; transition: all .2s; display: inline-flex;
  align-items: center; gap: 8px; border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--accent); color: white;
}
.btn-primary:hover {
  background: #15803D; transform: translateY(-2px);
  box-shadow: var(--shadow-md); text-decoration: none;
}
.btn-secondary {
  border-color: var(--border); color: var(--text-primary);
}
.btn-secondary:hover {
  border-color: var(--text-primary); transform: translateY(-2px);
  text-decoration: none;
}

.hero-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 36px; border-top: 1px solid var(--border);
  max-width: 720px;
}
.kpi-num {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -.04em;
  color: var(--text-primary); line-height: 1;
}
.kpi-label {
  font-size: .9rem; color: var(--text-muted); margin-top: 8px;
}

@media (max-width: 600px) {
  .hero-kpis { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 40px; }
}

/* === SECTION GENERIC === */
.section { padding: 80px 0; }
.section-eyebrow {
  display: inline-block; color: var(--accent); font-weight: 600;
  font-size: .9rem; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 16px;
}
.section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); line-height: 1.15;
  letter-spacing: -.03em; font-weight: 800; margin-bottom: 16px;
  max-width: 780px;
}
.section .lead {
  font-size: 1.15rem; color: var(--text-secondary);
  max-width: 680px; margin-bottom: 56px;
}

/* === OFFRES GRID === */
.offres-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.offre-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: all .25s;
  position: relative; overflow: hidden;
}
.offre-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
  transform: translateX(-100%); transition: transform .25s;
}
.offre-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.offre-card:hover::before { transform: translateX(0); }

.offre-card.featured {
  background: linear-gradient(135deg, #0C0A09 0%, #1C1917 100%);
  color: white; border: none;
}
.offre-card.featured .offre-icon { background: rgba(22,163,74,.2); color: var(--accent); }
.offre-card.featured .offre-meta { color: rgba(255,255,255,.6); }
.offre-card.featured h3 { color: white; }
.offre-card.featured p { color: rgba(255,255,255,.75); }

.offre-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(22,163,74,.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.offre-card-img {
  width: calc(100% + 64px); margin: -32px -32px 24px -32px;
  aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
}
.offre-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.offre-card:hover .offre-card-img img { transform: scale(1.05); }
.offre-card.featured .offre-card-img {
  background: linear-gradient(135deg, #1F2937, #0F172A);
}
.offre-meta {
  font-size: .85rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
  margin-bottom: 8px;
}
.offre-card h3 {
  font-size: 1.4rem; line-height: 1.3; letter-spacing: -.02em;
  margin-bottom: 12px; font-weight: 700;
}
.offre-card p {
  color: var(--text-secondary); margin-bottom: 20px; font-size: .98rem;
}
.offre-price {
  display: inline-block; font-weight: 700; color: var(--text-primary);
  background: var(--bg-secondary); padding: 6px 12px; border-radius: 100px;
  font-size: .9rem; margin-bottom: 16px;
}
.offre-card.featured .offre-price {
  background: rgba(255,255,255,.1); color: white;
}
.offre-link {
  font-weight: 600; font-size: .95rem; display: inline-flex;
  align-items: center; gap: 4px;
}
.offre-link:hover { gap: 8px; text-decoration: none; }

@media (max-width: 768px) {
  .offres-grid { grid-template-columns: 1fr; }
}

/* === STATS BAR === */
.stats-bar {
  background: var(--text-primary); color: white;
  padding: 64px 0;
}
.stats-bar h2 { color: white; max-width: 100%; text-align: center; }
.stats-bar .lead { color: rgba(255,255,255,.7); margin: 0 auto 48px; text-align: center; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: 3rem; font-weight: 800; letter-spacing: -.04em;
  background: linear-gradient(135deg, #16A34A, #22C55E);
  -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { color: rgba(255,255,255,.7); margin-top: 8px; font-size: .95rem; }
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-num { font-size: 2.25rem; }
}

/* === OUTILS === */
.outils-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.outil-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all .25s;
}
.outil-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.outil-card .badge-free {
  display: inline-block; background: rgba(22,163,74,.1); color: var(--accent);
  font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 100px;
  letter-spacing: .04em; margin-bottom: 16px;
}
.outil-card h4 {
  font-size: 1.15rem; margin-bottom: 8px; letter-spacing: -.01em;
}
.outil-card p {
  color: var(--text-secondary); font-size: .95rem; margin-bottom: 16px;
}
@media (max-width: 768px) {
  .outils-grid { grid-template-columns: 1fr; }
}

/* === ERREURS GOOGLE TABLE === */
.erreurs-table {
  background: #0C0A09; border-radius: var(--radius-lg);
  padding: 32px; color: white; overflow: hidden;
}
.erreurs-table h3 {
  font-size: 1.1rem; margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
}
.erreur-row {
  display: grid; grid-template-columns: minmax(160px, max-content) 1fr auto; gap: 20px;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,.08);
  align-items: center;
}
.erreur-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: .8rem; color: var(--accent-warning);
  background: rgba(249,115,22,.1); padding: 4px 10px;
  border-radius: 4px; font-weight: 600;
  white-space: nowrap; justify-self: start;
}
.erreur-msg { color: rgba(255,255,255,.85); font-size: .95rem; }
.erreur-action {
  color: var(--accent); font-size: .85rem;
  font-weight: 600; white-space: nowrap;
}
@media (max-width: 768px) {
  .erreur-row { grid-template-columns: 1fr; gap: 8px; }
  .erreur-action { justify-self: end; }
}

/* === CTA SECTION === */
.cta-section {
  background: var(--bg-secondary);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { margin: 0 auto 16px; max-width: 720px; }
.cta-section .lead { margin: 0 auto 32px; }

/* === FOOTER === */
footer {
  background: #0C0A09; color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
footer h5 {
  color: white; font-size: .95rem; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .06em;
}
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: rgba(255,255,255,.6); font-size: .9rem; }
footer a:hover { color: white; text-decoration: none; }
.footer-brand {
  font-size: 1.25rem; font-weight: 800; color: white;
  margin-bottom: 12px;
}
.footer-brand span { color: var(--accent); }
.footer-tagline {
  color: rgba(255,255,255,.6); font-size: .95rem; max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: .85rem; color: rgba(255,255,255,.4);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}