/* ============================================
   FINANCIÈRE MARJOS — Design System 2026
   Modern financial corporate identity
   ============================================ */

:root {
  /* Palette principale */
  --navy-900: #0A1628;
  --navy-800: #0F1E36;
  --navy-700: #16294D;
  --navy-600: #1E3A5F;
  --navy-500: #2B4E7A;
  --navy-400: #3B6BA3;
  --navy-300: #6B91B8;
  --navy-200: #A8C0D8;
  --navy-100: #D6E4F0;
  --navy-50: #EEF4FA;

  /* Accent or */
  --gold-600: #A68B5B;
  --gold-500: #C5A572;
  --gold-400: #D4BC8E;
  --gold-300: #E0CDA8;
  --gold-200: #EDE0C5;
  --gold-100: #F5EFDE;
  --gold-50: #FAF7EE;

  /* Neutres */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Sémantique */
  --success: #059669;
  --success-bg: #ECFDF5;
  --danger: #DC2626;
  --danger-bg: #FEF2F2;

  /* Typographie */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 22, 40, 0.12);
  --shadow-xl: 0 24px 56px rgba(10, 22, 40, 0.16);
  --shadow-gold: 0 8px 24px rgba(197, 165, 114, 0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --duration: 0.3s;

  /* Layout */
  --header-height: 80px;
  --max-width: 1280px;

  /* Aliases — shorthand for bourse page and inline styles */
  --navy: #0A1628;
  --navy-light: #0F1E36;
  --gold: #C5A572;
  --border: #E2E8F0;
  --text-muted: #64748B;
  --text-primary: #0A1628;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 70px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.display {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 300; }
.h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 400; }
.h4 { font-size: 1.25rem; font-weight: 500; font-family: var(--font-body); }

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-weight: 300;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--tight {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: var(--navy-900);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--gray {
  background: var(--gray-50);
}

.section--navy {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid > * {
  min-width: 0;
}

.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; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all var(--duration) var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy-900);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--gold-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--gold-400);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold-500);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.nav-dropdown-toggle .caret {
  font-size: 0.625rem;
  transition: transform var(--duration) var(--ease);
}

.nav-dropdown.open .caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration) var(--ease);
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all 0.15s var(--ease);
}

.nav-dropdown-menu a:hover {
  background: var(--gray-100);
  color: var(--navy-900);
}

.nav-dropdown-menu .divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0.375rem 0;
}

.nav-dropdown-menu .nav-header {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 0.5rem 0.75rem 0.25rem;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease), border-top 0.4s var(--ease), visibility 0s linear 0.4s;
    border-top: 0 solid rgba(255, 255, 255, 0.06);
  }

  .nav.open {
    max-height: 80vh;
    overflow-y: auto;
    padding: var(--space-md);
    border-top-width: 1px;
    visibility: visible;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease), border-top 0.4s var(--ease);
  }

  .nav-link {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    margin-top: 0;
    padding: 0.25rem 0 0.25rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 500px;
  }

  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.6);
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle {
    display: flex;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-700);
  border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--navy-300);
  background: var(--gray-50);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

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

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow-x: hidden;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.hero-text {
  max-width: 720px;
}

.hero-text .eyebrow {
  color: var(--gold-400);
  margin-bottom: var(--space-md);
}

.hero-text .eyebrow::before {
  background: var(--gold-400);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-400);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */

.page-header {
  background: var(--navy-900);
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(197, 165, 114, 0.08) 0%, transparent 60%);
}

.page-header .eyebrow {
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}

.page-header .eyebrow::before {
  background: var(--gold-400);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.0625rem;
  max-width: 640px;
  line-height: 1.6;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--duration) var(--ease);
}

.card:hover {
  border-color: var(--navy-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--navy-700);
}

.card-icon.gold {
  background: var(--gold-100);
  color: var(--gold-600);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   DOCUMENT LIST
   ============================================ */

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  transition: all var(--duration) var(--ease);
  background: var(--white);
}

.doc-item:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.doc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--danger-bg);
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.doc-content {
  flex: 1;
  min-width: 0;
}

.doc-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.doc-meta {
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.03em;
}

.doc-action {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: color var(--duration) var(--ease);
}

.doc-item:hover .doc-action {
  color: var(--gold-500);
}

/* ============================================
   TABS / YEAR SELECTOR
   ============================================ */

.year-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.year-tab {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  position: relative;
  bottom: -1px;
}

.year-tab:hover {
  color: var(--navy-900);
}

.year-tab.active {
  color: var(--navy-900);
  border-bottom-color: var(--gold-500);
}

.year-content {
  display: none;
  animation: fadeIn 0.4s var(--ease);
}

.year-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TIMELINE (Communiqués)
   ============================================ */

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500) 0%, var(--gray-200) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-500);
  z-index: 1;
  transition: all var(--duration) var(--ease);
}

.timeline-item:hover::before {
  background: var(--gold-500);
  box-shadow: 0 0 0 4px var(--gold-100);
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.375rem;
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: all var(--duration) var(--ease);
}

.timeline-content:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.timeline-content h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.timeline-content .doc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy-600);
  transition: color var(--duration) var(--ease);
}

.timeline-content .doc-link:hover {
  color: var(--gold-600);
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: start;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(197, 165, 114, 0.12) 0%, transparent 70%);
}

.contact-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-400);
}

.contact-detail-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.contact-detail-text strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.125rem;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: var(--danger);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--navy-900);
  font-size: 0.9375rem;
  transition: all var(--duration) var(--ease);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: var(--space-sm);
}

/* ============================================
   LEGAL PAGE
   ============================================ */

.legal-section {
  margin-bottom: var(--space-xl);
}

.legal-section h3 {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-section p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

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

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration) var(--ease);
}

.footer-col ul li a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-gold { color: var(--gold-500); }
.text-white { color: var(--white); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }

.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Only hide if JS is available and hasn't triggered yet */
.js-enabled .fade-in:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}

/* Ensure cards and content are always visible even if observer fails */
.card.fade-in,
.glass.fade-in {
  opacity: 1 !important;
  transform: none !important;
}

/* SVG decorations */
.decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Pattern background */
.pattern-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Glass effect */
.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}

/* ============================================
   PAGE BOURSE — Cours de bourse temps réel
   ============================================ */

.bourse-hero {
  background: var(--navy-900);
  padding: 140px 0 50px;
  position: relative;
  overflow: hidden;
}

.bourse-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(197,165,114,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,165,114,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bourse-hero .container { position: relative; z-index: 1; }

.bourse-label {
  color: var(--gold-500);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.bourse-title {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.bourse-subtitle {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bourse-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  padding: 4px 14px;
  background: rgba(46,196,64,.12);
  border: 1px solid rgba(46,196,64,.3);
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4ade80;
  vertical-align: middle;
}

.bourse-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50% { opacity: .6; box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.bourse-body {
  background: var(--gray-50);
  padding: 50px 0 80px;
}

.bourse-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.bourse-col-main { display: flex; flex-direction: column; gap: 28px; }
.bourse-col-side { display: flex; flex-direction: column; gap: 20px; }

/* Cours principal — carte navy premium */
.quote-main-card {
  background: var(--navy-900);
  border-radius: 16px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}

.quote-main-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(197,165,114,.08) 0%, transparent 70%);
  pointer-events: none;
}

.quote-price-row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.quote-price {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.quote-currency {
  font-size: 22px;
  color: var(--gold-500);
  font-weight: 400;
  margin-left: 4px;
}

.quote-var-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.quote-var-pill.up { background: rgba(46,196,64,.15); color: #4ade80; border: 1px solid rgba(46,196,64,.25); }
.quote-var-pill.down { background: rgba(231,76,60,.15); color: #f87171; border: 1px solid rgba(231,76,60,.25); }
.quote-var-pill.flat { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.12); }

.quote-meta-row {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.quote-meta-item { display: flex; flex-direction: column; gap: 4px; }

.quote-meta-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.quote-meta-value {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  font-variant-numeric: tabular-nums;
}

.quote-meta-value.gold { color: var(--gold-500); }

/* Seuils */
.seuils-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.seuil-card {
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
  position: relative;
}

.seuil-card.bas { background: linear-gradient(135deg, rgba(231,76,60,.08), rgba(231,76,60,.02)); border: 1px solid rgba(231,76,60,.15); }
.seuil-card.actuel { background: linear-gradient(135deg, rgba(197,165,114,.08), rgba(197,165,114,.02)); border: 1px solid rgba(197,165,114,.2); }
.seuil-card.haut { background: linear-gradient(135deg, rgba(46,196,64,.08), rgba(46,196,64,.02)); border: 1px solid rgba(46,196,64,.15); }

.seuil-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(10,22,40,.5);
  margin-bottom: 10px;
  font-weight: 600;
}

.seuil-value {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.seuil-card.bas .seuil-value { color: #c0392b; }
.seuil-card.actuel .seuil-value { color: var(--navy-900); }
.seuil-card.haut .seuil-value { color: #2ecc71; }

.seuil-mini { font-size: 13px; color: rgba(10,22,40,.4); margin-top: 4px; }

/* Barre de positionnement */
.position-bar-wrap { margin-top: 8px; }

.position-bar {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e74c3c 0%, #f39c12 50%, #2ecc71 100%);
  position: relative;
  margin: 16px 0 8px;
}

.position-marker {
  position: absolute;
  top: -6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 3px solid var(--gold-500);
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: left .6s ease;
}

.position-labels {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(10,22,40,.4);
  font-variant-numeric: tabular-nums;
}

/* Graphique */
.chart-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.chart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
}

.chart-title {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 400; color: var(--navy-900);
  margin: 0;
}

.chart-range-btns { display: flex; gap: 4px; }

.chart-range-btn {
  padding: 6px 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 6px;
  font-size: 12px;
  color: var(--gray-500);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .5px;
}

.chart-range-btn:hover { border-color: var(--gold-500); color: var(--navy-900); }
.chart-range-btn.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

#price-chart { width: 100%; height: 280px; display: block; }

/* Side cards */
.orderbook-card, .indicators-card, .performances-card, .transactions-card {
  background: var(--white);
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.side-card-title {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 400; color: var(--navy-900);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-500);
  display: flex; align-items: center; justify-content: space-between;
}

.side-card-badge {
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; font-weight: 600;
}

.badge-live { background: rgba(46,196,64,.12); color: #2ecc71; }

/* Carnet d'ordres */
.orderbook-table { width: 100%; font-size: 13px; }
.orderbook-table th {
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-400); font-weight: 600; padding: 4px 0 10px; text-align: left;
}
.orderbook-table th:nth-child(2), .orderbook-table th:nth-child(3) { text-align: right; }
.orderbook-table td { padding: 5px 0; font-variant-numeric: tabular-nums; border-top: 1px solid var(--gray-100); }
.orderbook-table td:nth-child(2), .orderbook-table td:nth-child(3) { text-align: right; }
.orderbook-buy { color: #27ae60; font-weight: 600; }
.orderbook-sell { color: #e74c3c; font-weight: 600; }

.orderbook-spread {
  margin-top: 14px; padding: 12px 16px;
  background: var(--gray-50); border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.orderbook-spread .label { color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; font-size: 10px; }
.orderbook-spread .value { font-weight: 700; color: var(--navy-900); font-size: 15px; }

/* Indicateurs */
.indicator-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
}
.indicator-row:last-child { border-bottom: none; }
.indicator-name { font-size: 13px; color: var(--gray-600); }
.indicator-name strong { color: var(--navy-900); font-weight: 600; }
.indicator-val { font-size: 15px; font-weight: 600; color: var(--navy-900); font-variant-numeric: tabular-nums; }
.indicator-val.signal-buy { color: #27ae60; }
.indicator-val.signal-sell { color: #e74c3c; }
.indicator-val.signal-neutral { color: var(--gray-400); }

/* Performances */
.perf-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
}
.perf-row:last-child { border-bottom: none; }
.perf-period { font-size: 13px; color: var(--gray-600); }
.perf-val { font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; }
.perf-val.pos { color: #27ae60; }
.perf-val.neg { color: #e74c3c; }

/* Transactions */
.txn-table { width: 100%; font-size: 12px; }
.txn-table th {
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-400); font-weight: 600; padding: 4px 0 10px; text-align: left;
}
.txn-table th:nth-child(2), .txn-table th:nth-child(3) { text-align: right; }
.txn-table td { padding: 6px 0; font-variant-numeric: tabular-nums; border-top: 1px solid var(--gray-100); }
.txn-table td:nth-child(2), .txn-table td:nth-child(3) { text-align: right; }
.txn-time { color: var(--gray-400); }
.txn-price { font-weight: 600; color: var(--navy-900); }
.txn-qty { color: var(--gray-600); }

/* Eligibilite */
.elig-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.elig-badge {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  background: rgba(197,165,114,.1);
  color: var(--gold-600);
  border: 1px solid rgba(197,165,114,.2);
}

/* Responsive bourse */
@media (max-width: 968px) {
  .bourse-grid { grid-template-columns: 1fr; }
  .seuils-row { grid-template-columns: 1fr; }
  .quote-price { font-size: 40px; }
}

@media (max-width: 600px) {
  .bourse-hero { padding: 110px 0 40px; }
  .bourse-title { font-size: 30px; }
  .quote-main-card { padding: 28px 24px; }
  .quote-price { font-size: 34px; }
  .quote-meta-row { gap: 20px; }
  .chart-range-btn { padding: 5px 10px; font-size: 11px; }
}

/* Gouvernance */
.gov-block { margin-top: 1.5rem; }
.gov-gerance { margin-bottom: 2rem; }
.gov-person {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.gov-photo {
  width: 120px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--gold-500, #C5A572);
  flex-shrink: 0;
}
.gov-info { flex: 1; }
.gov-info h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--gold-500, #C5A572);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gov-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900, #0A1628);
  margin: 0 0 0.75rem 0;
}
.gov-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600, #4A5568);
  margin: 0;
}
.gov-conseil h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--gold-500, #C5A572);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gov-membre {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200, #E2E8F0);
}
.gov-membre:last-child { border-bottom: none; }
.gov-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500, #718096);
  margin: 0 0 0.25rem 0;
}
.gov-membre .gov-name {
  font-size: 1.05rem;
  margin: 0 0 0.5rem 0;
}
.gov-membre .gov-bio { font-size: 0.85rem; }

@media (max-width: 600px) {
  .gov-person { flex-direction: column; }
  .gov-photo { width: 100px; height: 125px; }
}

/* Language switcher */
.lang-switch{display:inline-flex;align-items:center;gap:0;margin-left:1rem;border:1px solid rgba(197,165,114,0.3);border-radius:20px;overflow:hidden;vertical-align:middle;}
.lang-switch a{padding:4px 10px;font-size:0.75rem;font-weight:600;letter-spacing:0.05em;color:rgba(255,255,255,0.5);text-decoration:none;transition:all 0.2s;}
.lang-switch a.active{background:var(--gold-500);color:var(--navy-900);}
.lang-switch a:not(.active):hover{color:var(--gold-400);}
@media(max-width:768px){.lang-switch{margin-left:0;margin-top:0.5rem;}}

/* ============================================
   MOBILE OPTIMIZATIONS — 768px and below
   ============================================ */
@media (max-width: 768px) {
  /* Ensure all flex/grid children can shrink */
  .fade-in,
  .card,
  .hero-text,
  .hero-content {
    max-width: 100%;
    min-width: 0;
  }
  /* Key info card: ensure rows don't overflow */
  .card [style*="display:flex"] {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  /* CTA section: reduce padding on mobile */
  .section [style*="padding:3rem 4rem"] {
    padding: 2rem 1.25rem !important;
  }
  /* Section headings with <br> — let them wrap naturally */
  .section h2 br {
    display: none;
  }
  /* About section: ensure long words break */
  .section p {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

/* ============================================
   MOBILE OPTIMIZATIONS — 480px and below
   ============================================ */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }
  .header-inner {
    padding: 0 1rem;
  }
  .logo-mark {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .logo-text strong {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }
  .logo-text span {
    font-size: 0.6rem;
  }
  .nav-toggle {
    font-size: 1.2rem;
  }
  .nav-link {
    font-size: 0.9rem;
    padding: 0.75rem 0.5rem;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
  }
  .hero h1,
  .hero-title,
  .bourse-hero h1 {
    font-size: 1.75rem !important;
  }
  .hero-subtitle,
  .hero p {
    font-size: 0.9rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    gap: 1rem;
    margin-top: 2rem;
  }
  .hero-stat-value {
    font-size: 1.5rem;
  }
  .hero-scroll {
    display: none;
  }
  /* Section titles */
  .section-eyebrow {
    font-size: 0.7rem;
  }
  .section h2,
  .section-title {
    font-size: 1.35rem !important;
  }
  /* Cards */
  .card {
    padding: 1.25rem;
  }
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom {
    font-size: 0.72rem;
  }
  /* Contact */
  .contact-card {
    padding: 1.25rem;
  }
  /* Organigramme SVG — scale down font inside */
  .organigramme-wrap svg text {
    font-size: 11px !important;
  }
  .organigramme-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Bourse page sections */
  .bourse-section {
    padding: 24px 0;
  }
  .section-divider span {
    font-size: 0.95rem;
  }
}

/* ============================================
   VERY SMALL PHONES — 375px and below
   ============================================ */
@media (max-width: 375px) {
  .logo-text strong {
    font-size: 0.75rem;
  }
  .logo-text span {
    font-size: 0.55rem;
  }
  .hero h1,
  .hero-title {
    font-size: 1.5rem !important;
  }
  .hero-stat-value {
    font-size: 1.25rem;
  }
  .hero-stat-label {
    font-size: 0.7rem;
  }
  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  .footer-brand p {
    font-size: 0.8rem;
  }
  .organigramme-wrap svg text {
    font-size: 10px !important;
  }
}