/* ============================================
   112CYBER.EU — DESIGN SYSTEM GLOBAL
   Ealison France — European Cyber Response Platform
   Version 1.0 — 2026
   ============================================ */

:root {
  /* === COULEURS PRIMAIRES === */
  --red-112: #E8001D;
  --red-dark: #B5001A;
  --red-light: #FF1A35;
  --blue-eu: #003399;
  --blue-eu-light: #0052CC;
  --blue-eu-pale: #E8EEFF;
  --black-cyber: #0A0E1A;
  --black-deep: #050810;
  --grey-900: #111827;
  --grey-800: #1F2937;
  --grey-700: #374151;
  --grey-600: #4B5563;
  --grey-400: #9CA3AF;
  --grey-200: #E5E7EB;
  --grey-100: #F3F4F6;
  --white: #FFFFFF;

  /* === COULEURS SÉMANTIQUES === */
  --color-danger: #E8001D;
  --color-warning: #F59E0B;
  --color-success: #10B981;
  --color-info: #3B82F6;
  --color-critical: #7C3AED;

  /* === TYPOGRAPHIE === */
  --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --font-display: 'Inter', sans-serif;

  /* === TAILLES === */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-hero: clamp(2.5rem, 6vw, 5rem);

  /* === ESPACEMENTS === */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-6: 1.5rem; --space-8: 2rem;
  --space-10: 2.5rem; --space-12: 3rem; --space-16: 4rem;
  --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  /* === EFFETS === */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.3);
  --shadow-red: 0 0 30px rgba(232,0,29,0.3);
  --shadow-blue: 0 0 30px rgba(0,51,153,0.3);
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px;
  --radius-xl: 16px; --radius-2xl: 24px; --radius-full: 9999px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-primary);
  background: var(--black-cyber);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-20) 0; }
.section-sm { padding: var(--space-12) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: var(--space-2); } .gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); } .gap-8 { gap: var(--space-8); }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* === TYPOGRAPHIE === */
h1 { font-size: var(--text-hero); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: var(--text-4xl); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: var(--text-2xl); font-weight: 600; line-height: 1.3; }
h4 { font-size: var(--text-xl); font-weight: 600; }
h5 { font-size: var(--text-lg); font-weight: 600; }
p { color: var(--grey-400); line-height: 1.7; }
.text-white { color: var(--white) !important; }
.text-red { color: var(--red-112) !important; }
.text-blue { color: var(--blue-eu-light) !important; }
.text-green { color: var(--color-success) !important; }
.text-warning { color: var(--color-warning) !important; }
.lead { font-size: var(--text-xl); color: var(--grey-200); line-height: 1.6; }
.mono { font-family: var(--font-mono); }

/* === BADGES === */
.badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-red { background: rgba(232,0,29,0.15); color: var(--red-light); border: 1px solid rgba(232,0,29,0.3); }
.badge-blue { background: rgba(0,82,204,0.15); color: #60A5FA; border: 1px solid rgba(0,82,204,0.3); }
.badge-green { background: rgba(16,185,129,0.15); color: #34D399; border: 1px solid rgba(16,185,129,0.3); }
.badge-orange { background: rgba(245,158,11,0.15); color: #FCD34D; border: 1px solid rgba(245,158,11,0.3); }
.badge-purple { background: rgba(124,58,237,0.15); color: #A78BFA; border: 1px solid rgba(124,58,237,0.3); }
.badge-live { background: rgba(232,0,29,0.2); color: var(--red-light); border: 1px solid var(--red-112); animation: pulse-badge 2s infinite; }
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:0.6} }

/* === BOUTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md); font-weight: 600; font-size: var(--text-base);
  transition: var(--transition); white-space: nowrap; position: relative; overflow: hidden;
}
.btn-sos {
  background: var(--red-112); color: var(--white);
  padding: var(--space-4) var(--space-10); font-size: var(--text-xl); font-weight: 800;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-red);
  animation: pulse-sos 3s infinite;
}
.btn-sos:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 0 50px rgba(232,0,29,0.5); }
@keyframes pulse-sos {
  0%,100%{ box-shadow: 0 0 20px rgba(232,0,29,0.4); }
  50%{ box-shadow: 0 0 50px rgba(232,0,29,0.8), 0 0 80px rgba(232,0,29,0.3); }
}
.btn-primary { background: var(--blue-eu); color: var(--white); }
.btn-primary:hover { background: var(--blue-eu-light); transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-outline-red { background: transparent; color: var(--red-112); border: 2px solid var(--red-112); }
.btn-outline-red:hover { background: var(--red-112); color: var(--white); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-lg); }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }

/* === CARTES === */
.card {
  background: var(--grey-900); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: var(--space-8);
  transition: var(--transition-slow);
}
.card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-glass {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl);
}
.card-red { border-color: rgba(232,0,29,0.3); }
.card-red:hover { border-color: var(--red-112); box-shadow: var(--shadow-red); }
.card-blue { border-color: rgba(0,51,153,0.3); }
.card-blue:hover { border-color: var(--blue-eu); box-shadow: var(--shadow-blue); }

/* === ALERTE LIVE === */
.alert-live {
  display: flex; align-items: flex-start; gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg); border-left: 4px solid;
}
.alert-critical { background: rgba(232,0,29,0.1); border-color: var(--red-112); }
.alert-warning { background: rgba(245,158,11,0.1); border-color: var(--color-warning); }
.alert-info { background: rgba(59,130,246,0.1); border-color: var(--color-info); }
.alert-success { background: rgba(16,185,129,0.1); border-color: var(--color-success); }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,26,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.navbar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 var(--space-6);
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand { display: flex; align-items: center; gap: var(--space-3); }
.brand-logo {
  width: 40px; height: 40px; background: var(--red-112);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: var(--text-lg); color: white; font-family: var(--font-mono);
}
.brand-name { font-size: var(--text-xl); font-weight: 800; letter-spacing: -0.02em; }
.brand-name span { color: var(--red-112); }
.navbar-nav { display: flex; align-items: center; gap: var(--space-6); }
.nav-link { font-size: var(--text-sm); font-weight: 500; color: var(--grey-400); transition: var(--transition); }
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); }
.navbar-actions { display: flex; align-items: center; gap: var(--space-4); }
.btn-urgence {
  background: var(--red-112); color: white;
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-md);
  font-weight: 700; font-size: var(--text-sm); animation: pulse-sos 3s infinite;
}
.btn-urgence:hover { background: var(--red-dark); }

/* === BARRE URGENCE TOP === */
.urgence-bar {
  background: var(--red-112); color: white;
  padding: var(--space-2) var(--space-6); text-align: center;
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.02em;
}
.urgence-bar a { color: white; text-decoration: underline; }

/* === HERO === */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,0,29,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0,51,153,0.08) 0%, transparent 60%),
              var(--black-cyber);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content { position: relative; z-index: 1; padding-top: 100px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-6); padding: var(--space-2) var(--space-4);
  background: rgba(232,0,29,0.1); border: 1px solid rgba(232,0,29,0.3);
  border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: 600;
  color: var(--red-light);
}
.hero-title { margin-bottom: var(--space-6); }
.hero-title .accent { color: var(--red-112); }
.hero-title .eu-accent { color: #60A5FA; }
.hero-desc { font-size: var(--text-xl); color: var(--grey-300); margin-bottom: var(--space-10); max-width: 600px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-12); }
.hero-stats { display: flex; gap: var(--space-8); flex-wrap: wrap; }
.hero-stat-num { font-size: var(--text-3xl); font-weight: 800; color: white; }
.hero-stat-label { font-size: var(--text-sm); color: var(--grey-400); }
.hero-right { position: relative; }

/* === TICKER MENACES === */
.threat-ticker {
  background: rgba(232,0,29,0.08); border: 1px solid rgba(232,0,29,0.2);
  border-radius: var(--radius-lg); padding: var(--space-4) var(--space-6);
  overflow: hidden; margin-bottom: var(--space-8);
}
.ticker-label {
  font-size: var(--text-xs); font-weight: 700; color: var(--red-light);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-2);
  display: flex; align-items: center; gap: var(--space-2);
}
.ticker-dot { width: 8px; height: 8px; background: var(--red-112); border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.ticker-content { overflow: hidden; height: 24px; position: relative; }
.ticker-items { animation: ticker-scroll 20s linear infinite; }
.ticker-item { display: block; font-size: var(--text-sm); color: var(--grey-200); padding: var(--space-1) 0; white-space: nowrap; }

/* === SECTION TRIAGE VICTIME === */
.triage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-4); }
.triage-card {
  background: var(--grey-900); border: 2px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl); padding: var(--space-6);
  cursor: pointer; transition: var(--transition-slow); text-align: center;
}
.triage-card:hover { border-color: var(--red-112); background: rgba(232,0,29,0.05); transform: translateY(-4px); }
.triage-card.selected { border-color: var(--red-112); background: rgba(232,0,29,0.1); }
.triage-icon { font-size: 2.5rem; margin-bottom: var(--space-3); }
.triage-label { font-weight: 600; font-size: var(--text-sm); color: white; }
.triage-desc { font-size: var(--text-xs); color: var(--grey-400); margin-top: var(--space-1); }

/* === FORMULAIRE === */
.form-group { margin-bottom: var(--space-6); }
.form-label { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--grey-200); margin-bottom: var(--space-2); }
.form-label .required { color: var(--red-112); margin-left: var(--space-1); }
.form-input {
  width: 100%; padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md); color: var(--white); font-size: var(--text-base);
  transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--blue-eu-light); box-shadow: 0 0 0 3px rgba(0,82,204,0.2); }
.form-input::placeholder { color: var(--grey-600); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-help { font-size: var(--text-xs); color: var(--grey-400); margin-top: var(--space-1); }
.form-error { font-size: var(--text-xs); color: var(--red-light); margin-top: var(--space-1); }

/* === OBSERVATOIRE === */
.threat-card {
  background: var(--grey-900); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: var(--space-6); transition: var(--transition);
  border-left: 4px solid transparent;
}
.threat-card.critical { border-left-color: var(--red-112); }
.threat-card.high { border-left-color: var(--color-warning); }
.threat-card.medium { border-left-color: var(--color-info); }
.threat-card.low { border-left-color: var(--color-success); }
.threat-card:hover { background: var(--grey-800); transform: translateX(4px); }
.threat-title { font-weight: 600; color: white; margin-bottom: var(--space-2); }
.threat-meta { font-size: var(--text-xs); color: var(--grey-400); display: flex; gap: var(--space-4); flex-wrap: wrap; }
.threat-country { display: flex; align-items: center; gap: var(--space-1); }

/* === DASHBOARD === */
.kpi-card {
  background: var(--grey-900); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: var(--space-6);
}
.kpi-value { font-size: var(--text-4xl); font-weight: 800; color: white; line-height: 1; }
.kpi-label { font-size: var(--text-sm); color: var(--grey-400); margin-top: var(--space-2); }
.kpi-trend { font-size: var(--text-xs); font-weight: 600; margin-top: var(--space-1); }
.kpi-trend.up { color: var(--color-success); }
.kpi-trend.down { color: var(--red-112); }

/* === STATUT INTERVENTION === */
.status-timeline { position: relative; padding-left: var(--space-8); }
.status-timeline::before {
  content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
  width: 2px; background: rgba(255,255,255,0.1);
}
.timeline-step { position: relative; padding-bottom: var(--space-6); }
.timeline-dot {
  position: absolute; left: -33px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid;
}
.timeline-dot.done { background: var(--color-success); border-color: var(--color-success); }
.timeline-dot.active { background: var(--red-112); border-color: var(--red-112); animation: pulse-dot 2s infinite; }
.timeline-dot.pending { background: transparent; border-color: var(--grey-600); }
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(232,0,29,0.4)} 50%{box-shadow:0 0 0 8px rgba(232,0,29,0)} }
.timeline-title { font-weight: 600; color: white; font-size: var(--text-sm); }
.timeline-desc { font-size: var(--text-xs); color: var(--grey-400); margin-top: var(--space-1); }
.timeline-time { font-size: var(--text-xs); color: var(--grey-500); font-family: var(--font-mono); }

/* === COMPTEUR LIVE === */
.live-counter {
  display: flex; align-items: center; gap: var(--space-3);
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-full); padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm); color: #34D399;
}
.live-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; animation: pulse-live 2s infinite; }
@keyframes pulse-live { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.7} }

/* === FOOTER === */
.footer {
  background: var(--black-deep); border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-20) 0 var(--space-8);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: var(--space-8); margin-bottom: var(--space-12); }
.footer-brand p { color: var(--grey-400); font-size: var(--text-sm); line-height: 1.8; margin-top: var(--space-4); }
.footer-col h4 { font-size: var(--text-sm); font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--space-4); }
.footer-col ul li { margin-bottom: var(--space-2); }
.footer-col ul li a { font-size: var(--text-sm); color: var(--grey-400); }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: var(--space-8);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4);
}
.footer-bottom p { font-size: var(--text-xs); color: var(--grey-600); }
.footer-eu { display: flex; align-items: center; gap: var(--space-3); }
.eu-flag { font-size: var(--text-lg); }
.certif-badges { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-4); }
.certif-badge {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs); color: var(--grey-300); font-weight: 500;
}

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.pricing-card {
  background: var(--grey-900); border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl); padding: var(--space-8);
  position: relative; transition: var(--transition-slow);
}
.pricing-card.featured {
  border-color: var(--red-112); background: rgba(232,0,29,0.05);
  transform: scale(1.02);
}
.pricing-card:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); }
.pricing-card.featured:hover { transform: scale(1.04); }
.pricing-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--red-112); color: white;
  padding: var(--space-1) var(--space-4); border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; white-space: nowrap;
}
.pricing-price { font-size: var(--text-5xl); font-weight: 900; color: white; line-height: 1; margin: var(--space-4) 0; }
.pricing-price sup { font-size: var(--text-2xl); vertical-align: top; margin-top: var(--space-2); }
.pricing-price span { font-size: var(--text-lg); color: var(--grey-400); }
.pricing-features { margin: var(--space-6) 0; }
.pricing-feature { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-3); font-size: var(--text-sm); color: var(--grey-300); }
.pricing-feature-check { color: var(--color-success); flex-shrink: 0; margin-top: 2px; }

/* === PARTENAIRES === */
.partners-strip {
  background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06); padding: var(--space-8) 0; overflow: hidden;
}
.partners-track { display: flex; gap: var(--space-12); align-items: center; animation: scroll-partners 30s linear infinite; }
.partner-item { font-size: var(--text-sm); font-weight: 700; color: var(--grey-500); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; transition: var(--transition); }
.partner-item:hover { color: white; }
@keyframes scroll-partners { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .navbar-nav { display: none; }
  .hero { min-height: auto; padding: var(--space-32) 0 var(--space-20); }
  .hero-stats { gap: var(--space-6); }
  .triage-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* === UTILITAIRES === */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: var(--space-8) 0; }
.highlight { color: var(--red-112); }
.highlight-blue { color: #60A5FA; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.pt-24 { padding-top: var(--space-24); }

/* === ANIMATIONS === */
@keyframes ticker-scroll { 0%{transform:translateY(0)} 100%{transform:translateY(-100%)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
