/* ============================================
   L.A.C.A — Les Amis de la Communauté Angolaise
   Design System — VERSION FUEGO 🔥
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter+Tight:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,800&display=swap');

:root {
  /* Brand palette - panafricaine maximaliste */
  --brand-red: #E63329;
  --brand-red-deep: #B82016;
  --brand-yellow: #F6B93B;
  --brand-yellow-deep: #E8A317;
  --brand-yellow-light: #FFD66B;
  --brand-black: #0A0A0A;
  --brand-blue: #1A3DA8;
  --brand-blue-bright: #3D5FE0;
  --brand-green: #16A34A;
  --brand-cream: #FFF8E7;

  /* Light theme */
  --bg: #FAF7F2;
  --bg-elevated: #FFFFFF;
  --bg-subtle: #FFF4DC;
  --bg-warm: #FFEDB8;
  --text: #0A0A0A;
  --text-muted: #5C5750;
  --text-soft: #8B857C;
  --border: rgba(10, 10, 10, 0.08);
  --border-strong: rgba(10, 10, 10, 0.16);
  --accent: var(--brand-red);
  --accent-2: var(--brand-yellow);
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 24px 48px rgba(10, 10, 10, 0.12);
  --shadow-xl: 0 40px 80px rgba(230, 51, 41, 0.18);
  --shadow-glow: 0 0 0 8px rgba(230, 51, 41, 0.12);

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Container */
  --container-max: 1320px;
  --container-px: clamp(1rem, 4vw, 2.5rem);
}

[data-theme="dark"] {
  --bg: #0B0B0C;
  --bg-elevated: #141416;
  --bg-subtle: #1C1C20;
  --text: #F5F2EC;
  --text-muted: #A8A39A;
  --text-soft: #6B665E;
  --border: rgba(245, 242, 236, 0.08);
  --border-strong: rgba(245, 242, 236, 0.16);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.6);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s, color 0.2s; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.h-display {
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.h-1 { font-size: clamp(2.25rem, 5vw, 4rem); }
.h-2 { font-size: clamp(1.875rem, 4vw, 3rem); }
.h-3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.h-4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.lead {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  color: var(--text-muted);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.875rem var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.925rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-red);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(.22, 1.05, .36, 1);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 60%; }
.nav-link.active { color: var(--accent); }
.nav-link.active::after { width: 60%; background: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switcher {
  display: flex;
  background: var(--bg-subtle);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
}
.lang-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(.22, 1.05, .36, 1);
  filter: grayscale(60%) brightness(0.9);
  opacity: 0.7;
  position: relative;
}
.lang-btn svg {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
}
.lang-btn:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}
.lang-btn.active {
  filter: none;
  opacity: 1;
  box-shadow: 0 0 0 2px var(--brand-red), 0 4px 12px rgba(230,51,41,0.3);
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.theme-toggle:hover { background: var(--border-strong); }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elevated);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open .nav-link { padding: 0.875rem 1rem; }
}

/* ============================================
   BUTTONS — avec brillance qui balaie + breath
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.925rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 18px -6px rgba(230, 51, 41, 0.5);
}
.btn-accent:hover {
  background: var(--brand-red-deep);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px -8px rgba(230, 51, 41, 0.55);
}

.btn-yellow {
  background: var(--brand-yellow);
  color: var(--brand-black);
  box-shadow: 0 6px 18px -6px rgba(246, 185, 59, 0.5);
}
.btn-yellow:hover {
  background: var(--brand-yellow-deep);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-subtle);
  color: var(--text);
}
.btn-ghost:hover { background: var(--border-strong); }

.btn-lg {
  padding: 1.125rem 2rem;
  font-size: 1rem;
}

.btn-arrow::after {
  content: '→';
  transition: transform 0.25s;
}
.btn-arrow:hover::after { transform: translateX(6px); }

/* Breath animation for primary CTA (sollicitation douce) */
.btn-breath {
  animation: ctaBreath 2.4s ease-in-out infinite;
}
@keyframes ctaBreath {
  0%, 100% { box-shadow: 0 6px 18px -6px rgba(230, 51, 41, 0.5), 0 0 0 0 rgba(230, 51, 41, 0.4); }
  50% { box-shadow: 0 6px 18px -6px rgba(230, 51, 41, 0.5), 0 0 0 14px rgba(230, 51, 41, 0); }
}

/* ============================================
   HERO — VERSION FUEGO
   ============================================ */
.hero {
  position: relative;
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 0%, color-mix(in srgb, var(--brand-yellow) 25%, transparent), transparent 50%),
    radial-gradient(ellipse at 80% 100%, color-mix(in srgb, var(--brand-red) 18%, transparent), transparent 50%),
    var(--bg);
}

[data-theme="dark"] .hero {
  background:
    radial-gradient(ellipse at 20% 0%, color-mix(in srgb, var(--brand-yellow) 12%, transparent), transparent 50%),
    radial-gradient(ellipse at 80% 100%, color-mix(in srgb, var(--brand-red) 15%, transparent), transparent 50%),
    var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatShape 14s ease-in-out infinite;
}
.hero-bg-shape.red {
  width: 500px; height: 500px;
  background: var(--brand-red);
  top: -100px; right: -100px;
  opacity: 0.35;
}
.hero-bg-shape.yellow {
  width: 400px; height: 400px;
  background: var(--brand-yellow);
  bottom: -50px; left: -50px;
  opacity: 0.4;
  animation-delay: -7s;
}
.hero-bg-shape.blue {
  width: 320px; height: 320px;
  background: var(--brand-blue);
  top: 40%; left: 50%;
  opacity: 0.15;
  animation-delay: -3s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.94); }
}

/* Decorative grid pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

[data-theme="dark"] .hero-bg::before {
  background-image:
    linear-gradient(rgba(245,242,236,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,242,236,.04) 1px, transparent 1px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}
.hero-title .accent-red { color: var(--brand-red); }
.hero-title .accent-yellow { color: var(--brand-yellow-deep); }
.hero-title .serif {
  font-family: 'Fraunces', var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Word-by-word reveal */
.hero-title .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(-2deg);
  animation: wordIn 0.9s cubic-bezier(.22, 1.05, .36, 1) forwards;
}
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

/* Highlighted word with marker effect */
.hero-title .highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px;
  bottom: 6px;
  height: 30%;
  background: var(--brand-yellow);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: markerSwipe 0.7s cubic-bezier(.22, 1.05, .36, 1) 1.2s forwards;
}
@keyframes markerSwipe {
  to { transform: scaleX(1); }
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.hero-stat-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-subtle);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-visual-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 1rem 1.25rem;
  background: color-mix(in srgb, var(--bg-elevated) 85%, transparent);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}
.hero-visual-overlay strong { display: block; margin-bottom: 0.25rem; font-family: var(--font-display); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 3px color-mix(in srgb, #16A34A 25%, transparent);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-7);
}
.section-header.left { text-align: left; margin-left: 0; }
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-header.left p { margin-left: 0; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.action-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.4s, border-color 0.3s;
}
.action-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-yellow), var(--brand-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.22, 1.05, .36, 1);
}
.action-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(230, 51, 41, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.action-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}
.action-card:hover::before { transform: scaleX(1); }
.action-card:hover::after { opacity: 1; }

.action-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--bg-subtle), var(--bg-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  transition: transform 0.6s cubic-bezier(.34, 1.56, .64, 1);
}
.action-card:hover .action-card-icon {
  transform: scale(1.15) rotate(-8deg);
}
.action-card h3 {
  font-size: 1.375rem;
}
.action-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.action-card-link {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.action-card-link::after { content: '→'; transition: transform 0.2s; }
.action-card:hover .action-card-link::after { transform: translateX(3px); }

/* ============================================
   TWO COLUMNS - FR / ANGOLA
   ============================================ */
.dual-territory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 900px) {
  .dual-territory { grid-template-columns: 1fr; }
}
.territory-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.territory-card-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.flag-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.flag-dot.fr { background: linear-gradient(90deg, #0055A4 33%, #FFFFFF 33% 66%, #EF4135 66%); border: 1px solid var(--border); }
.flag-dot.ao { background: linear-gradient(180deg, var(--brand-red) 50%, var(--brand-black) 50%); }
.territory-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}
.territory-card p { color: var(--text-muted); margin-bottom: 1.5rem; }
.territory-card ul { list-style: none; margin-bottom: 2rem; }
.territory-card ul li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.territory-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   PROJECT / CROWDFUNDING CARDS
   ============================================ */
.project-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.5s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.4s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-yellow-deep);
}
.project-card-image {
  aspect-ratio: 16/10;
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}
.project-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22, 1.05, .36, 1);
}
.project-card:hover .project-card-image img { transform: scale(1.1); }

.project-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.project-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.project-card-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.progress-bar {
  height: 10px;
  background: var(--bg-subtle);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.75rem;
  position: relative;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-yellow-deep), var(--brand-yellow));
  background-size: 200% 100%;
  animation: shimmerGradient 3s ease-in-out infinite;
  border-radius: var(--radius-full);
  transition: width 1.4s cubic-bezier(0.22, 1.05, 0.36, 1);
  position: relative;
  box-shadow: 0 0 8px rgba(230, 51, 41, 0.4);
}
.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: progressShimmer 2.5s ease-in-out infinite;
}
@keyframes shimmerGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes progressShimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

.project-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}
.project-stat-amount {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.project-stat-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 2px;
}
.project-stat-goal {
  text-align: right;
  color: var(--text-muted);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.825rem;
  color: var(--text-muted);
}

.project-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}
.project-actions .btn { flex: 1; padding: 0.75rem 1rem; font-size: 0.875rem; }

/* ============================================
   STATS BAND — reflet qui balaie + compteurs animés
   ============================================ */
.stats-band {
  background: var(--brand-black);
  color: white;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(230, 51, 41, 0.22), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(246, 185, 59, 0.18), transparent 50%);
}
.stats-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -100%; width: 50%;
  background: linear-gradient(90deg, transparent, rgba(246, 185, 59, 0.15), transparent);
  animation: sweepLight 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sweepLight {
  0% { left: -100%; }
  100% { left: 200%; }
}

.stats-band-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .stats-band-content { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.stat-block {
  text-align: center;
}

/* CORRECTIF #1 du skill : chiffres animés non collés au libellé */
.stat-block b, .hero-trust b {
  display: block;
  line-height: 1;
  white-space: nowrap;
}
.stat-block b .count, .hero-trust b .count {
  display: inline;
  font: inherit;
  color: inherit;
  font-size: inherit;
  vertical-align: baseline;
}
.stat-block span, .hero-trust span {
  display: block;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, var(--brand-yellow), #FFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TESTIMONIAL / QUOTE
   ============================================ */
.quote-block {
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-subtle));
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand-yellow-deep) 20%, transparent);
}
.quote-block::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--brand-red) 0%, transparent 70%);
  opacity: 0.15;
  transform: translate(30%, -30%);
}

[data-theme="dark"] .quote-block {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-red) 12%, var(--bg-elevated)), var(--bg-elevated));
}

.quote-mark {
  position: absolute;
  top: -20px; left: 30px;
  font-family: 'Fraunces', var(--font-serif);
  font-size: 12rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  z-index: 0;
}
.quote-text {
  font-family: 'Fraunces', var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  line-height: 1.4;
  color: var(--text);
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 1;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quote-author-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}
.quote-author-name { font-weight: 600; font-size: 0.95rem; }
.quote-author-role { font-size: 0.825rem; color: var(--text-muted); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brand-black);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-red) 33%, var(--brand-yellow) 33%, var(--brand-yellow) 66%, var(--brand-black) 66%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 56px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
}
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social:hover { background: var(--accent); }

.footer-col h4 {
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-yellow);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.925rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   NEWSLETTER / CTA
   ============================================ */
.cta-block {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-yellow-deep) 50%, var(--brand-red-deep) 100%);
  background-size: 200% 200%;
  animation: ctaGradient 8s ease-in-out infinite;
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(230, 51, 41, 0.4);
}
@keyframes ctaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  animation: floatShape 12s ease-in-out infinite;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  animation: floatShape 14s ease-in-out -6s infinite;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.cta-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-header-content {
  max-width: 800px;
}
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
}
.page-header .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--text-soft); }

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 12%, transparent);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ============================================
   ANIMATIONS — version FUEGO
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* REVEAL flou → net (signature du skill HS) */
[data-fade] {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(6px);
  transition: opacity 0.95s cubic-bezier(.22, 1.05, .36, 1),
              transform 0.95s cubic-bezier(.22, 1.05, .36, 1),
              filter 0.95s cubic-bezier(.22, 1.05, .36, 1);
}
[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Cascade : delay sur les enfants quand le parent devient visible */
.cascade > * { transition-delay: 0s; }
.cascade.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.cascade.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.cascade.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.cascade.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.cascade.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.cascade.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* Pulse halo for badges */
@keyframes pulseHalo {
  0%, 100% { box-shadow: 0 0 0 0 rgba(246, 185, 59, 0.5); }
  50% { box-shadow: 0 0 0 16px rgba(246, 185, 59, 0); }
}

/* Float doux infinit */
@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.badge-elastic {
  animation: badgeBounce 0.9s cubic-bezier(.34, 1.56, .64, 1) both, floatGentle 3.5s ease-in-out 0.9s infinite;
  position: relative;
}
@keyframes badgeBounce {
  0% { opacity: 0; transform: scale(0.5) translateY(20px); }
  60% { opacity: 1; transform: scale(1.1) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.badge-elastic::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--brand-yellow);
  z-index: -1;
  animation: pulseHalo 2.5s ease-in-out infinite;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-fade] { opacity: 1; transform: none; filter: none; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee {
  display: flex;
  overflow: hidden;
  padding: 1.5rem 0;
  background: linear-gradient(90deg, var(--brand-black) 0%, var(--brand-red-deep) 25%, var(--brand-black) 50%, var(--brand-yellow-deep) 75%, var(--brand-black) 100%);
  background-size: 200% 100%;
  animation: marqueeBg 20s linear infinite;
  color: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
@keyframes marqueeBg {
  to { background-position: -200% 0; }
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.marquee-content span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-dot {
  width: 12px; height: 12px;
  background: var(--brand-yellow);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--brand-yellow);
}

/* ============================================
   UTILITY
   ============================================ */
.text-accent { color: var(--accent); }
.text-yellow { color: var(--brand-yellow-deep); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 2rem; }

[lang="pt"] .lang-fr, [lang="fr"] .lang-pt { display: none !important; }

/* ============================================
   BLOG ARTICLE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16/10;
  background: var(--bg-subtle);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-content { padding: 1.5rem; }
.blog-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.blog-card-cat {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--accent);
}
.blog-card h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.blog-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* Donate page */
.donate-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
@media (max-width: 700px) { .donate-tiers { grid-template-columns: repeat(2, 1fr); } }
.donate-tier {
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.donate-tier:hover { border-color: var(--accent); }
.donate-tier.active { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--bg-elevated)); }
.donate-tier-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.donate-tier-desc { font-size: 0.78rem; color: var(--text-muted); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { text-align: center; }
.team-card-photo {
  aspect-ratio: 1;
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, var(--bg-subtle)), var(--bg-subtle));
}
.team-card h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card-role { font-size: 0.85rem; color: var(--text-muted); }

/* Press / article display */
.press-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: stretch;
}
@media (max-width: 800px) {
  .press-card { grid-template-columns: 1fr; }
}
.press-card-img { background: var(--bg-subtle); overflow: hidden; }
.press-card-img img { width: 100%; height: 100%; object-fit: cover; }
.press-card-body { padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; justify-content: center; }
.press-card-source {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.press-card-body h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); margin-bottom: 0.75rem; line-height: 1.2; }
.press-card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

/* Selection */
::selection { background: var(--accent); color: white; }

/* ============================================
   COOKIE BANNER & CONSENT MODAL — RGPD
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.18), 0 0 0 1px rgba(230, 51, 41, 0.08);
  padding: 1.5rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.45s cubic-bezier(.22, 1.05, .36, 1), transform 0.45s cubic-bezier(.22, 1.05, .36, 1);
  pointer-events: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cookie-banner-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cookie-banner-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.btn-sm {
  padding: 0.625rem 1rem;
  font-size: 0.85rem;
}
@media (max-width: 800px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 1.25rem; }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 1rem; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; min-width: 100px; }
}

/* MODAL */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal.is-visible { display: flex; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(4px);
  animation: fadeUp 0.3s ease both;
}
.cookie-modal-content {
  position: relative;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.45s cubic-bezier(.22, 1.05, .36, 1) both;
}
.cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
}
.cookie-modal-close:hover {
  background: var(--accent);
  color: white;
}
.cookie-modal-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cookie-category {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.cookie-category:last-of-type { border-bottom: 1px solid var(--border); }
.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.cookie-category-header strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.cookie-category-header small {
  display: block;
  color: var(--text-muted);
  font-size: 0.825rem;
  line-height: 1.5;
}
.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.cookie-toggle input { display: none; }
.cookie-toggle-slider {
  width: 44px;
  height: 24px;
  background: var(--border-strong);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}
.cookie-toggle-locked {
  font-size: 0.75rem;
  color: var(--text-soft);
  padding: 0.35rem 0.75rem;
  background: var(--bg-subtle);
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cookie-modal-actions { flex-direction: column-reverse; }
  .cookie-modal-actions .btn { width: 100%; }
}

/* ============================================
   ✨ AWWWARDS-LEVEL ANIMATIONS — V3 ULTRA
   Compatible iOS Safari, Android, desktop
   ============================================ */

/* === 1. SCROLL REVEAL VARIANTS ===
   Plus de variété que data-fade simple */
[data-reveal] {
  opacity: 0;
  transition: opacity 1s cubic-bezier(.22, 1.05, .36, 1),
              transform 1s cubic-bezier(.22, 1.05, .36, 1),
              filter 1s cubic-bezier(.22, 1.05, .36, 1);
  will-change: opacity, transform, filter;
}
[data-reveal="up"]      { transform: translateY(60px) scale(.96); filter: blur(8px); }
[data-reveal="down"]    { transform: translateY(-60px) scale(.96); filter: blur(8px); }
[data-reveal="left"]    { transform: translateX(-80px); filter: blur(6px); }
[data-reveal="right"]   { transform: translateX(80px); filter: blur(6px); }
[data-reveal="scale"]   { transform: scale(0.7); filter: blur(10px); }
[data-reveal="rotate"]  { transform: rotate(-8deg) translateY(30px); filter: blur(6px); }
[data-reveal="flip"]    { transform: perspective(800px) rotateX(-30deg); transform-origin: top; }
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* === 2. TILT 3D AU SURVOL ===
   Cartes qui s'inclinent en suivant la souris (via JS) */
.tilt-3d {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.22, 1.05, .36, 1);
  will-change: transform;
}
.tilt-3d > * {
  transform: translateZ(0);
  transition: transform 0.4s;
}
.tilt-3d:hover { transition: transform 0.1s linear; }

/* === 3. MAGNETIC BUTTONS ===
   Les boutons "attirent" le curseur quand on s'approche */
.btn, .nav-link, .action-card-link {
  transition: transform 0.3s cubic-bezier(.22, 1.05, .36, 1),
              background 0.25s, color 0.25s, box-shadow 0.3s;
}

/* === 4. CTA ULTRA BRILLANCE ===
   Effet liquide qui balaie + ondes au clic */
.btn-accent {
  position: relative;
  overflow: hidden;
}
.btn-accent::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg,
    var(--brand-red) 0%,
    var(--brand-yellow) 25%,
    var(--brand-red) 50%,
    var(--brand-yellow-deep) 75%,
    var(--brand-red) 100%);
  background-size: 300% 100%;
  animation: ctaGradient 4s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-accent:hover::after { opacity: 1; }

/* === 5. RIPPLE EFFECT AU CLIC === */
.ripple-container { position: relative; overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: rippleExpand 0.6s ease-out;
  pointer-events: none;
}
@keyframes rippleExpand {
  to { transform: scale(4); opacity: 0; }
}

/* === 6. CARDS ULTRA TILT + SHINE ===
   Cartes qui s'éclairent et s'inclinent comme une carte holographique */
.action-card, .project-card, .team-card {
  perspective: 1000px;
  transform-style: preserve-3d;
}
.action-card::before, .project-card::after {
  pointer-events: none;
}

/* Holographique shine sur cards */
.shine-card {
  position: relative;
  overflow: hidden;
}
.shine-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.15) 55%,
    transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(0deg);
  transition: transform 0.9s cubic-bezier(.22, 1.05, .36, 1);
  pointer-events: none;
}
.shine-card:hover::after {
  transform: translateX(100%) translateY(100%) rotate(0deg);
}

/* === 7. TEXT REVEAL LETTER BY LETTER === */
.letter-reveal .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(80%) rotate(8deg);
  animation: letterIn 0.7s cubic-bezier(.22, 1.05, .36, 1) forwards;
}
@keyframes letterIn {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

/* === 8. NUMBER GLOW (pour stats hero) === */
.glow-num {
  text-shadow: 0 0 30px rgba(246, 185, 59, 0.4);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 30px rgba(246, 185, 59, 0.4); }
  50% { text-shadow: 0 0 50px rgba(246, 185, 59, 0.7), 0 0 80px rgba(230, 51, 41, 0.4); }
}

/* === 9. NAV LINK FANCY UNDERLINE === */
.nav-link {
  position: relative;
  overflow: hidden;
}
.nav-link::before {
  content: attr(data-hover);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s, top 0.3s;
  pointer-events: none;
}

/* === 10. IMAGE ZOOM AU SCROLL === */
.scroll-zoom-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.scroll-zoom-wrap img {
  transition: transform 1.2s cubic-bezier(.22, 1.05, .36, 1);
  will-change: transform;
}
.scroll-zoom-wrap.in-view img { transform: scale(1.05); }
.scroll-zoom-wrap:hover img { transform: scale(1.12); }

/* === 11. GLITCH HOVER (subtil, pour H1) === */
.glitch-hover {
  position: relative;
  transition: text-shadow 0.2s;
}
.glitch-hover:hover {
  animation: glitchShake 0.4s ease;
}
@keyframes glitchShake {
  0%, 100% { transform: translate(0, 0); text-shadow: none; }
  20% { transform: translate(-1px, 1px); text-shadow: -2px 0 var(--brand-red), 2px 0 var(--brand-yellow); }
  40% { transform: translate(1px, -1px); text-shadow: 2px 0 var(--brand-red), -2px 0 var(--brand-blue); }
  60% { transform: translate(-1px, 0); text-shadow: -2px 0 var(--brand-yellow), 2px 0 var(--brand-red); }
  80% { transform: translate(1px, 1px); text-shadow: none; }
}

/* === 12. CUSTOM CURSOR (desktop only) === */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--brand-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(.22, 1.05, .36, 1),
                height 0.3s cubic-bezier(.22, 1.05, .36, 1),
                background 0.3s, opacity 0.3s;
    mix-blend-mode: difference;
  }
  .custom-cursor.is-hover {
    width: 56px;
    height: 56px;
    background: var(--brand-yellow);
  }
  .custom-cursor.is-text {
    width: 4px;
    height: 22px;
    border-radius: 2px;
  }
  body.has-custom-cursor { cursor: none; }
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor textarea,
  body.has-custom-cursor select { cursor: none; }
}

/* === 13. SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-yellow), var(--brand-blue));
  width: 0%;
  z-index: 9998;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(230, 51, 41, 0.5);
}

/* === 14. SECTION DIVIDERS ANIMÉS === */
.divider-flow {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: var(--bg);
}
.divider-flow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, var(--brand-red) 1px, transparent 2px),
    radial-gradient(circle at 75% 50%, var(--brand-yellow) 1px, transparent 2px);
  background-size: 40px 40px;
  animation: dotsFlow 25s linear infinite;
  opacity: 0.4;
}
@keyframes dotsFlow {
  to { background-position: 40px 0, -40px 0; }
}

/* === 15. HERO IMAGE PARALLAX TILT === */
.hero-visual {
  perspective: 1500px;
}
.hero-visual img {
  transition: transform 0.6s cubic-bezier(.22, 1.05, .36, 1);
  will-change: transform;
}

/* === 16. STAGGER LETTERS ON LOAD === */
.split-letters {
  display: inline-block;
}
.split-letters .l {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-90deg);
  transform-origin: 50% 100%;
  animation: letterRise 0.8s cubic-bezier(.22, 1.05, .36, 1) forwards;
}
@keyframes letterRise {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* === 17. HOVER ZOOM ON IMAGES === */
.img-hover-zoom {
  overflow: hidden;
  position: relative;
}
.img-hover-zoom img {
  transition: transform 0.8s cubic-bezier(.22, 1.05, .36, 1),
              filter 0.5s;
}
.img-hover-zoom:hover img {
  transform: scale(1.08) rotate(-1deg);
  filter: brightness(1.05) saturate(1.2);
}

/* === 18. FLOATING BLOB CURSOR FOLLOWER === */
.blob-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-red) 0%, transparent 70%);
  opacity: 0.12;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, opacity 0.4s;
  will-change: transform;
}
[data-theme="dark"] .blob-cursor {
  opacity: 0.18;
}

/* === 19. ANIMATED UNDERLINE LINKS === */
a.link-fancy {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}
a.link-fancy::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(.22, 1.05, .36, 1);
}
a.link-fancy:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* === 20. SECTION GRADIENT ON ENTER === */
.section-glow {
  position: relative;
  overflow: hidden;
}
.section-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%,
    color-mix(in srgb, var(--brand-yellow) 15%, transparent),
    transparent 50%);
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.section-glow.in-view::before { opacity: 1; }

/* === 21. TOUCH DEVICE FEEDBACK ===
   Sur iPhone : tap = micro-rebond visible */
@media (hover: none) and (pointer: coarse) {
  .action-card:active,
  .project-card:active,
  .team-card:active {
    transform: scale(0.96);
    transition: transform 0.15s cubic-bezier(.34, 1.56, .64, 1);
  }
  .btn:active {
    transform: scale(0.94);
  }
  /* Effet "pulse" léger au tap */
  .action-card:active::before,
  .project-card:active::after {
    transform: scaleX(1) !important;
  }
}

/* === 22. MOBILE-FIRST FADE IN ===
   Sur iPhone, les data-reveal s'activent plus tôt */
@media (max-width: 768px) {
  [data-reveal] {
    transition-duration: 0.75s;
  }
  /* Compteurs un peu plus rapides pour pas attendre */
  .count { transition-duration: 1.2s; }
}

/* === 23. LOGO HOVER ANIMATION === */
.nav-logo img {
  transition: transform 0.5s cubic-bezier(.34, 1.56, .64, 1);
}
.nav-logo:hover img {
  transform: rotate(-12deg) scale(1.15);
}

/* === 24. BREATHING DOTS === */
.dot-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  position: relative;
  animation: dotBreath 2s ease-in-out infinite;
}
.dot-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--brand-red);
  opacity: 0.4;
  animation: dotHalo 2s ease-in-out infinite;
}
@keyframes dotBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
@keyframes dotHalo {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(2); }
}

/* === 25. STICKY SECTION HEADERS ===
   Les eyebrows qui collent au top quand on scroll dans une section */
.eyebrow.is-sticky {
  position: sticky;
  top: 80px;
  z-index: 5;
}

/* === 26. REDUCED MOTION OVERRIDE ===
   Respect strict mais conserve le minimum vital */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  [data-reveal], [data-fade] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .blob-cursor, .custom-cursor { display: none !important; }
}

/* === 27. PRINT === */
@media print {
  .blob-cursor, .custom-cursor, .scroll-progress,
  .cookie-banner, .cookie-modal, .marquee { display: none !important; }
}

/* === 28. NAVBAR SCROLL STATES === */
.navbar {
  transition: transform 0.4s cubic-bezier(.22, 1.05, .36, 1),
              background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.is-scrolled {
  background: color-mix(in srgb, var(--bg-elevated) 95%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(10, 10, 10, 0.06);
}
.navbar.is-hidden {
  transform: translateY(-110%);
}

/* === 29. FORM INPUTS FANCY === */
.form-input, .form-textarea, select.form-input {
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.form-input:focus, .form-textarea:focus, select.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(230, 51, 41, 0.12);
  transform: translateY(-1px);
}

/* === 30. HOVER LIFT ON ALL CTAs === */
.btn:not(:disabled):hover {
  letter-spacing: 0.015em;
}

/* === 31. Mobile reveal less aggressive === */
@media (max-width: 768px) {
  [data-reveal="left"], [data-reveal="right"] {
    transform: translateY(30px) !important;
  }
  [data-reveal="scale"] { transform: scale(0.92) !important; }
  [data-reveal="rotate"] { transform: translateY(20px) !important; }
}

/* === 32. INTRO LOAD SEQUENCE === */
body { animation: bodyFadeIn 0.5s ease both; }
@keyframes bodyFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === 33. FOCUS-VISIBLE accessibilité === */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible {
  outline-offset: 4px;
}

/* === 34. INTRO LOADER (1s puis fade out) === */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--brand-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
  animation: introOut 1s cubic-bezier(.7, 0, .3, 1) 0.6s forwards;
}
.intro-loader-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  position: relative;
  animation: introLogo 0.8s cubic-bezier(.22, 1.05, .36, 1) both;
}
.intro-loader-logo .l-red { color: var(--brand-red); }
.intro-loader-logo .l-yellow { color: var(--brand-yellow); }
.intro-loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  animation: barFadeOut 0.4s ease 0.5s forwards;
}
.intro-loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-yellow));
  animation: barFill 0.6s cubic-bezier(.22, 1.05, .36, 1) forwards;
}
@keyframes introLogo {
  from { opacity: 0; transform: scale(0.7) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes barFill {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes barFadeOut {
  to { opacity: 0; }
}
@keyframes introOut {
  to { opacity: 0; visibility: hidden; }
}

/* Loader skip sur visiteur récurrent */
body.no-intro .intro-loader { display: none; }

/* === 35. MOBILE TOUCH EFFECTS RENFORCÉS === */
@media (hover: none) and (pointer: coarse) {
  /* Hover-like sur cards quand visibles */
  .action-card.is-revealed:not(.no-hover),
  .project-card.is-revealed:not(.no-hover) {
    animation: floatGentle 5s ease-in-out infinite;
  }
  .action-card:nth-child(2n).is-revealed { animation-delay: -2.5s; }
  
  /* Pulse subtil sur CTA principal sur mobile */
  .btn-accent.btn-breath {
    animation: ctaBreath 3s ease-in-out infinite;
  }
}

/* === 36. CASCADE STAGGER REVEAL === */
[data-cascade] > * {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(.22, 1.05, .36, 1),
              transform 0.8s cubic-bezier(.22, 1.05, .36, 1),
              filter 0.8s cubic-bezier(.22, 1.05, .36, 1);
}
[data-cascade].is-cascaded > *:nth-child(1) { transition-delay: 0.05s; }
[data-cascade].is-cascaded > *:nth-child(2) { transition-delay: 0.12s; }
[data-cascade].is-cascaded > *:nth-child(3) { transition-delay: 0.19s; }
[data-cascade].is-cascaded > *:nth-child(4) { transition-delay: 0.26s; }
[data-cascade].is-cascaded > *:nth-child(5) { transition-delay: 0.33s; }
[data-cascade].is-cascaded > *:nth-child(6) { transition-delay: 0.40s; }
[data-cascade].is-cascaded > *:nth-child(7) { transition-delay: 0.47s; }
[data-cascade].is-cascaded > *:nth-child(8) { transition-delay: 0.54s; }
[data-cascade].is-cascaded > * {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* === 37. SCROLL VELOCITY EFFECTS === */
html { scroll-behavior: smooth; }

/* === 38. LINK HOVER UPLOAD INDICATOR === */
.action-card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s cubic-bezier(.22, 1.05, .36, 1), color 0.25s;
}
.action-card-link::after {
  content: '→';
  transition: transform 0.3s cubic-bezier(.22, 1.05, .36, 1);
}
.action-card-link:hover {
  gap: 0.7rem;
  color: var(--accent);
}
.action-card-link:hover::after {
  transform: translateX(4px);
}

/* === 39. NUM SCROLL FLIP (compteurs avec effet rouleau) === */
.count-flip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

/* === 40. CTA FLOAT IN HERO MOBILE === */
@media (max-width: 768px) {
  .hero-cta { 
    gap: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn { width: 100%; }
}

/* ============================================
   FOOTER CREDIT DARKIN — Correctif #3 du skill HS
   Logo + label sur UNE seule ligne, jamais empilé
   ============================================ */
.footer-credit {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.footer-credit:hover { opacity: 1; }
.footer-credit > span { white-space: nowrap; color: rgba(255,255,255,0.7); }
.darkin-link {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(.22, 1.05, .36, 1);
}
.darkin-link:hover { transform: translateY(-2px); }
.darkin-logo {
  height: 18px;
  width: auto;
  display: block;
  /* Le logo est déjà blanc, on garde tel quel sur fond noir du footer */
}
@media (max-width: 600px) {
  .footer-credit { font-size: 0.72rem; gap: 10px; }
  .darkin-logo { height: 16px; }
}
