/* ============================================
   THIALIE PHARMA — Design System
   Clean light/white pharma theme
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* --- Design Tokens --- */
:root {
  /* ── Brand colors (from logo) ───────────────────── */
  /* Sky blue — the medical cross */
  --blue:       #1EB0E5;
  --blue-dark:  #1493BF;
  --blue-light: #3EC4EE;
  --blue-pale:  rgba(30,176,229,0.10);
  --blue-mid:   rgba(30,176,229,0.18);

  /* Health green — the P letter & text */
  --green:      #3CB87A;
  --green-dark: #2D9863;
  --green-light:#53CA8B;
  --green-pale: rgba(60,184,122,0.10);

  /* Leaf yellow-green — gradient accent */
  --leaf:       #7DC240;
  --leaf-pale:  rgba(125,194,64,0.12);

  /* ── Dark backgrounds (Finovate style) ─────────── */
  --dark-950:  #060C18;
  --dark-900:  #0A1220;
  --dark-800:  #0E1A2C;
  --dark-700:  #152438;
  --dark-600:  #1E3048;
  --dark-500:  #283E5A;

  --navy:      #0B1F42;
  --navy-light:#1B3A72;

  /* ── Accent aliases (maps blue as primary accent) ─ */
  --gold:      var(--blue);
  --gold-light:var(--blue-light);
  --gold-dark: var(--blue-dark);
  --gold-pale: var(--blue-pale);

  /* ── Neutral ────────────────────────────────────── */
  --white:     #FFFFFF;
  --cream:     #EFF6FF;
  --grey-50:   #F4F9FF;
  --grey-100:  #E8F1FC;
  --grey-200:  #D4E4F5;
  --grey-300:  #B8CFEA;
  --grey-400:  #8AABCC;
  --grey-600:  #4A6B8A;
  --grey-700:  #2D4D6E;
  --grey-800:  #1A3050;

  --text-dark:  #0B1F42;
  --text-body:  #2D4158;
  --text-muted: #4A6070;
  --text-light: #607890;

  /* ── Shadows ─────────────────────────────────────── */
  --shadow-xs:  0 1px 3px rgba(11,31,66,0.06);
  --shadow-sm:  0 2px 8px rgba(11,31,66,0.08), 0 1px 3px rgba(11,31,66,0.05);
  --shadow-md:  0 8px 28px rgba(11,31,66,0.1), 0 2px 8px rgba(11,31,66,0.06);
  --shadow-lg:  0 20px 52px rgba(11,31,66,0.12), 0 6px 16px rgba(11,31,66,0.07);
  --shadow-xl:  0 32px 72px rgba(11,31,66,0.16);
  --shadow-gold:0 8px 32px rgba(30,176,229,0.25);

  /* Radii */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-full:9999px;

  /* Motion */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --transition: 0.32s var(--ease);
  --transition-fast: 0.18s var(--ease);

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-y:  100px;
  --section-y-sm: 64px;
}

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

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul, ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input, textarea, select { font-family:inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); letter-spacing: -0.01em; }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.text-serif { font-family: var(--font-serif); }
.text-italic { font-style: italic; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-y) 0; }
.section-sm { padding: var(--section-y-sm) 0; }

/* Section backgrounds */
.bg-dark     { background: linear-gradient(135deg, #0A1F42, #152F6B); }
.bg-dark-alt { background: linear-gradient(135deg, #0B2252, #163370); }
.bg-navy     { background: var(--navy); }
.bg-cream    { background: var(--cream); }
.bg-light    { background: var(--grey-50); }
.bg-white    { background: var(--white); }

/* Section Header */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue-dark);
  flex-shrink: 0;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header.left {
  text-align: left;
  margin: 0 0 48px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-header.dark h2 { color: var(--white); }
.section-header.dark p  { color: rgba(255,255,255,0.6); }
.section-header.dark .section-label { color: var(--gold); }
.section-header.dark .section-label::before { background: var(--gold); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Blue filled (renamed from gold) */
.btn-gold {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Dark filled */
.btn-dark {
  background: var(--dark-800);
  color: var(--white);
  border-color: var(--dark-800);
}
.btn-dark:hover {
  background: var(--dark-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* White filled */
.btn-white {
  background: var(--white);
  color: var(--dark-900);
  border-color: var(--white);
  font-weight: 600;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline white */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* Outline blue */
.btn-outline-gold {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-gold:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline dark */
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--grey-300);
}
.btn-outline-dark:hover {
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-lg { font-size: 0.95rem; padding: 17px 38px; }
.btn-sm { font-size: 0.8rem;  padding: 10px 22px; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Arrow icon in button */
.btn .arrow {
  display: inline-flex;
  transition: transform var(--transition-fast);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--grey-200), 0 4px 24px rgba(11,31,66,0.08);
}

.navbar.scrolled .nav-link {
  color: var(--text-body);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--blue-dark);
}
.navbar.scrolled .nav-link::after { background: var(--blue); }
.navbar.scrolled .hamburger span   { background: var(--text-dark); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 40px;
  max-width: 1380px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 24px 32px 32px;
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease-out);
  z-index: 999;
  box-shadow: 0 16px 48px rgba(11,31,66,0.12);
}

.nav-mobile.open { transform: translateY(0); }

.nav-mobile .nav-link {
  display: block;
  color: var(--text-body);
  padding: 14px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--grey-100);
}

.nav-mobile .nav-link:hover { color: var(--blue-dark); }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #061530 0%, #0B2252 45%, #0D2A5E 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

/* Background photo layer */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  pointer-events: none;
}

/* Overlay dégradé pour la lisibilité */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,21,48,0.96) 0%,
    rgba(11,34,82,0.82) 55%,
    rgba(13,42,94,0.50) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Subtle gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,176,229,0.14) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(60,184,122,0.1) 0%, transparent 70%);
  bottom: -50px; left: -50px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  z-index: 1;
}

/* Hero label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-label-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2.4s infinite;
}

@keyframes blink {
  0%,100% { opacity:1; }
  50% { opacity:0.3; }
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-content p {
  color: rgba(255,255,255,0.56);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 44px;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num em {
  font-style: italic;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Hero visual panel */
.hero-panel {
  position: relative;
}

.hero-panel-card {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11,31,66,0.3);
}

.hero-panel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-panel-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-panel-title::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--blue);
}

.hero-service-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  cursor: default;
}

.hero-service-row:hover {
  background: var(--grey-50);
}

.hero-service-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 400;
}

.hero-service-icon {
  width: 32px; height: 32px;
  background: var(--blue-pale);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-service-icon svg { width: 16px; height: 16px; stroke: var(--gold); }

.hero-service-tag {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-pale);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Floating badge on hero panel */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-y 5s ease-in-out infinite;
}

.hero-badge.bottom-left {
  bottom: -20px;
  left: -20px;
}

.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-icon svg { width: 20px; height: 20px; stroke: var(--gold-dark); }

.hero-badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ============================================
   TICKER / MARQUEE STRIP
   ============================================ */
.ticker-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 24s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-900);
}

.ticker-item::after {
  content: '✦';
  font-size: 0.5rem;
  opacity: 0.6;
  padding-left: 24px;
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-dark {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 52px 40px;
  text-align: center;
  border-right: 1px solid var(--grey-200);
  transition: var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--grey-50); }

.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-num em {
  font-style: italic;
  color: var(--blue);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================
   ABOUT / PRESENTATION SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #f0ede8 0%, #e8e4dc 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

.about-img-inner svg {
  width: 64px; height: 64px;
  stroke: rgba(198,164,90,0.3);
  stroke-width: 1;
}

/* Real photo inside frame */
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  padding: 16px;
  transition: transform 0.6s var(--ease);
}
.about-img-frame:hover .about-photo { transform: scale(1.03); }

/* Gold corner accent */
.about-img-frame::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--gold);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.15;
}

/* Experience badge */
.about-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: linear-gradient(135deg, #0B1F42, #1B3A72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  min-width: 160px;
  box-shadow: var(--shadow-lg);
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.about-badge-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
}

/* Decorative gold line */
.about-deco-line {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  opacity: 0.2;
}

.about-content {
  padding-right: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0 40px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 2px;
}

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SERVICES (light bg)
   ============================================ */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { background: var(--grey-50); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border: 1px solid rgba(30,176,229,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-icon svg { width: 24px; height: 24px; stroke: var(--blue); stroke-width: 1.5; }
.service-card:hover .service-icon { background: var(--blue-pale); border-color: var(--blue); }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-weight: 400;
}

.service-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-top: 24px;
  transition: var(--transition-fast);
}

.service-link svg { width: 14px; height: 14px; transition: transform var(--transition-fast); }
.service-link:hover svg { transform: translateX(4px); }

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise-section { background: var(--grey-50); }

.expertise-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 4px;
  background: var(--white);
  margin-bottom: 56px;
  overflow-x: auto;
}

.expertise-tab {
  flex: 1;
  padding: 11px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}

.expertise-tab.active {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.expertise-tab:hover:not(.active) { color: var(--text-dark); }

.expertise-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.expertise-card:hover {
  border-color: var(--grey-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.expertise-card:hover::before { transform: scaleX(1); }

.expertise-card-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--grey-200);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.expertise-card:hover .expertise-card-num { color: var(--gold-pale); }

.expertise-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.expertise-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ============================================
   COVERAGE / MAP SECTION
   ============================================ */
.coverage-section { background: linear-gradient(135deg, #091D3E 0%, #152F6B 55%, #0E2558 100%); }

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.coverage-content h2 { color: var(--white); margin-bottom: 20px; }
.coverage-content > p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.regions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition-fast);
}

.region-item:hover {
  background: rgba(30,176,229,0.1);
  border-color: rgba(30,176,229,0.25);
  color: var(--white);
}

.region-dot {
  width: 6px; height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Map visual */
.coverage-map-visual {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coverage-map-visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(198,164,90,0.1) 0%, transparent 70%);
}

.map-svg-wrap {
  width: 200px; height: 200px;
  margin: 0 auto 24px;
  background: rgba(30,176,229,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30,176,229,0.2);
}

.map-svg-wrap svg {
  width: 96px; height: 96px;
  stroke: var(--blue-light);
  stroke-width: 1;
  fill: none;
  opacity: 0.8;
}

.coverage-map-visual h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.coverage-map-visual p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.coverage-network {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.network-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.network-item:hover { background: rgba(198,164,90,0.05); }

.network-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.network-icon svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.5; }

.network-text strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.network-text span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   WHY US — Light
   ============================================ */
.why-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  padding: 36px 32px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,176,229,0.08), var(--shadow-md);
  transform: translateY(-4px);
}

.why-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--grey-100);
  line-height: 1;
  position: absolute;
  top: 28px; right: 28px;
  font-style: italic;
}

.why-icon-wrap {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon-wrap svg { width: 22px; height: 22px; stroke: var(--blue-dark); stroke-width: 1.5; }

.why-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   HUMAN BANNER (photo plein-cadre)
   ============================================ */
.human-banner {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.human-banner-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1584820927498-cfe5211fd8bf?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.human-banner:hover .human-banner-photo { transform: scale(1); }

.human-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9,29,62,0.96) 0%,
    rgba(11,34,82,0.82) 55%,
    rgba(13,42,94,0.45) 100%
  );
}

.human-banner-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: var(--section-y) 0;
}

.human-banner-content .section-label { color: var(--blue-light); margin-bottom: 20px; }

.human-banner-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
  line-height: 1.25;
}

.human-banner-content p {
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.human-banner-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hb-trust-item { text-align: center; }
.hb-trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hb-trust-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hb-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .human-banner { min-height: 0; }
  .human-banner-overlay {
    background: rgba(6,12,24,0.9);
  }
  .human-banner-trust { flex-wrap: wrap; gap: 20px; }
}

/* ============================================
   DIRECTOR SECTION
   ============================================ */
.director-section { background: linear-gradient(135deg, #091D3E 0%, #152F6B 55%, #0E2558 100%); }

.director-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.director-visual {
  text-align: center;
}

.director-avatar-frame {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(30,176,229,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.director-avatar-frame::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(198,164,90,0.1);
}

.director-avatar-frame svg {
  width: 72px; height: 72px;
  stroke: rgba(198,164,90,0.4);
  stroke-width: 1;
}

.director-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}

.director-role {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.director-divider {
  width: 32px; height: 1px;
  background: var(--gold);
  margin: 16px auto;
  opacity: 0.4;
}

.director-since {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.director-quote-wrap {
  position: relative;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.08;
  line-height: 0.7;
  position: absolute;
  top: 0; left: -10px;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.director-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 32px;
  padding-left: 16px;
}

.director-sig {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.director-sig-line {
  width: 32px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.director-sig span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.news-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-thumb.t1 { background: linear-gradient(135deg, #0B1220 0%, #1B3A72 100%); }
.news-thumb.t2 { background: linear-gradient(135deg, #0D2B1A 0%, #1B7A55 100%); }
.news-thumb.t3 { background: linear-gradient(135deg, #2A1A08 0%, #6B4A1A 100%); }

.news-thumb svg {
  width: 56px; height: 56px;
  stroke: rgba(255,255,255,0.2);
  stroke-width: 1;
}

.news-cat-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  font-size: 0.74rem;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-meta-dot {
  width: 3px; height: 3px;
  background: var(--text-light);
  border-radius: 50%;
}

.news-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 400;
  flex: 1;
}

.news-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  transition: var(--transition-fast);
}

.news-link svg { width: 14px; height: 14px; transition: transform var(--transition-fast); }
.news-link:hover { color: var(--blue); }
.news-link:hover svg { transform: translateX(4px); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #0A1F42 0%, #163673 50%, #0D2960 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(30,176,229,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,176,229,0.4), transparent);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 44px;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #091D3E 0%, #152F6B 55%, #0E2558 100%);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(30,176,229,0.12) 0%, transparent 55%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,176,229,0.3), transparent);
}

.page-hero-inner {
  position: relative; z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
}

/* ============================================
   FORMS
   ============================================ */
.form-section {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-label .req { color: var(--gold-dark); }

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--grey-50);
  transition: var(--transition-fast);
  outline: none;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,176,229,0.12);
}

.form-control::placeholder { color: var(--grey-400); }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-select {
  width: 100%;
  padding: 13px 40px 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--grey-50);
  transition: var(--transition-fast);
  outline: none;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-select:focus {
  border-color: var(--blue);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(30,176,229,0.12);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-file-zone {
  border: 1.5px dashed var(--grey-300);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--grey-50);
}

.form-file-zone:hover {
  border-color: var(--gold);
  background: rgba(198,164,90,0.03);
}

.form-file-zone-text {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(27,122,85,0.07);
  border: 1px solid rgba(27,122,85,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 56px;
  align-items: start;
}

.contact-info-panel {
  background: linear-gradient(160deg, #0B1F42 0%, #163570 100%);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  position: sticky;
  top: 96px;
  box-shadow: var(--shadow-lg);
}

.contact-info-panel h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-info-panel > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.5; }

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}

.contact-item-value a { color: var(--white); transition: color var(--transition-fast); }
.contact-item-value a:hover { color: var(--gold); }

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 28px 0;
}

.contact-social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold-pale);
  border-color: rgba(198,164,90,0.3);
  color: var(--gold);
}

.contact-map-embed {
  margin-top: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-map-embed svg { width: 32px; height: 32px; stroke: var(--gold); stroke-width: 1; opacity: 0.5; }
.contact-map-embed span { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.contact-map-embed a { font-size: 0.75rem; color: var(--gold); text-decoration: underline; }

/* ============================================
   STEPS (Partenaires)
   ============================================ */
.steps-wrap {
  position: relative;
  padding-left: 56px;
}

.steps-wrap::before {
  content: '';
  position: absolute;
  left: 19px; top: 20px; bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue) 0%, rgba(30,176,229,0.1) 100%);
}

.step-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.step-row:last-child { margin-bottom: 0; }

.step-circle {
  position: absolute;
  left: -56px;
  width: 40px; height: 40px;
  background: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
  z-index: 1;
}

.step-content {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  flex: 1;
  transition: var(--transition);
}

.step-content:hover {
  border-color: rgba(198,164,90,0.3);
  box-shadow: var(--shadow-sm);
}

.step-content h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-photo {
  height: 220px;
  background: linear-gradient(135deg, #0B2252, #163570);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.team-photo svg { width: 64px; height: 64px; stroke: rgba(255,255,255,0.15); stroke-width: 1; }

.team-body {
  padding: 24px;
}

.team-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 400;
}

.team-role-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.team-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-cell {
  background: var(--white);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}

.value-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.value-cell:hover { background: var(--cream); }
.value-cell:hover::before { transform: scaleX(1); }

.value-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--grey-200);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.value-cell:hover .value-num { color: rgba(198,164,90,0.2); }

.value-cell h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.value-cell p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SERVICE DETAIL (Services page)
   ============================================ */
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-detail-item {
  background: var(--white);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.service-detail-item:hover { background: var(--grey-50); }

.sdi-num {
  padding: 32px 28px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--grey-200);
  font-style: italic;
  line-height: 1;
  border-right: 1px solid var(--grey-200);
}

.sdi-body {
  padding: 28px 32px;
}

.sdi-body h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.sdi-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.sdi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.sdi-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.sdi-arrow {
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdi-arrow svg {
  width: 18px; height: 18px;
  stroke: var(--grey-300);
  stroke-width: 1.5;
  transition: var(--transition-fast);
}

.service-detail-item:hover .sdi-arrow svg {
  stroke: var(--gold);
  transform: translateX(4px);
}

/* ============================================
   NEWS PAGE TABS
   ============================================ */
.news-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 48px;
  overflow-x: auto;
}

.news-tab-btn {
  padding: 12px 22px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.news-tab-btn.active {
  color: var(--text-dark);
  border-bottom-color: var(--blue);
  font-weight: 600;
}

.news-tab-btn:hover:not(.active) { color: var(--text-dark); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, #091D3E 0%, #061530 100%);
  border-top: 1px solid rgba(30,176,229,0.15);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  line-height: 1.75;
  margin: 20px 0 28px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-row svg { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 1.5; flex-shrink: 0; margin-top: 3px; }

.footer-contact-row span, .footer-contact-row a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.footer-contact-row a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.2);
}

.footer-bottom a { color: rgba(255,255,255,0.3); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.float-actions {
  position: fixed;
  bottom: 28px; right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fab {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.fab svg { width: 20px; height: 20px; }
.fab:hover { transform: scale(1.1); box-shadow: var(--shadow-xl); }

.fab-wa  { background: #25D366; }
.fab-wa svg { stroke: white; stroke-width: 1.5; }
.fab-call { background: var(--blue); }
.fab-call svg { stroke: var(--white); stroke-width: 1.5; }
.fab-top  { background: #0B1F42; border: 1px solid rgba(30,176,229,0.25); display: none; }
.fab-top svg { stroke: var(--white); stroke-width: 1.5; }
.fab-top.visible { display: flex; }

/* ============================================
   UTILITY / LAYOUT HELPERS
   ============================================ */

/* Text helpers */
.text-center-block {
  text-align: center;
  margin-top: 44px;
}

.text-center-block-lg {
  text-align: center;
  margin-top: 48px;
}

/* Section label centered */
.section-label--center {
  justify-content: center;
}

/* Button group centered */
.btn-group--center {
  justify-content: center;
}

/* About section intro paragraph */
.about-intro-p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-top: 16px;
}

/* Small image sub-caption */
.img-subcaption {
  font-size: 0.7rem;
  opacity: 0.5;
}

/* Coverage section text overrides (dark bg) */
.coverage-heading {
  color: var(--white);
  margin-bottom: 20px;
}

.coverage-body-text {
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

/* ============================================
   AOS (Animate on Scroll)
   ============================================ */
.aos {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.aos-delay-1 { transition-delay: 0.08s; }
.aos-delay-2 { transition-delay: 0.16s; }
.aos-delay-3 { transition-delay: 0.24s; }
.aos-delay-4 { transition-delay: 0.32s; }
.aos-delay-5 { transition-delay: 0.40s; }

.aos.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .expertise-grid-4   { grid-template-columns: repeat(2,1fr); }
  .values-grid        { grid-template-columns: repeat(2,1fr); }
  .footer-top         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .director-wrap      { grid-template-columns: 1fr 2fr; gap: 48px; }
}

@media (max-width: 960px) {
  :root { --section-y: 72px; }
  .hero-inner         { grid-template-columns: 1fr; gap: 56px; }
  .hero-panel         { max-width: 480px; margin: 0 auto; }
  .about-grid         { grid-template-columns: 1fr; gap: 56px; }
  .coverage-grid      { grid-template-columns: 1fr; gap: 56px; }
  .services-grid      { grid-template-columns: repeat(2,1fr); }
  .news-grid          { grid-template-columns: repeat(2,1fr); }
  .why-grid-3         { grid-template-columns: repeat(2,1fr); }
  .team-grid          { grid-template-columns: repeat(2,1fr); }
  .stats-grid         { grid-template-columns: repeat(2,1fr); }
  .contact-layout     { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
  .navbar-inner       { padding: 0 24px; }
}

@media (max-width: 768px) {
  :root { --section-y: 56px; --section-y-sm: 44px; }
  .container          { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger          { display: flex; }
  .hero               { min-height: 0; padding: 120px 0 60px; }
  .hero-inner         { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-stats         { justify-content: center; flex-wrap: wrap; gap: 24px; }
  .hero-content p     { max-width: 100%; }
  .btn-group          { justify-content: center; }
  .services-grid      { grid-template-columns: 1fr; }
  .why-grid-3         { grid-template-columns: 1fr; }
  .expertise-grid-4   { grid-template-columns: repeat(2,1fr); }
  .news-grid          { grid-template-columns: 1fr; }
  .footer-top         { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom      { flex-direction: column; gap: 8px; text-align: center; }
  .team-grid          { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: repeat(2,1fr); }
  .form-grid-2        { grid-template-columns: 1fr; }
  .form-section       { padding: 28px 24px; }
  .director-wrap      { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .director-sig       { justify-content: center; }
  .hero-label         { justify-content: center; }
  .service-detail-item{ grid-template-columns: 60px 1fr; }
  .sdi-arrow          { display: none; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.9rem; }
  .expertise-grid-4   { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .regions-list       { grid-template-columns: 1fr; }
}

/* ============================================
   LEGACY v1 COMPATIBILITY
   (inner pages built before Finovate redesign)
   ============================================ */

/* Variable aliases — maps old names to new tokens */
:root {
  --primary:       var(--blue);
  --primary-dark:  var(--blue-dark);
  --secondary:     var(--green);
  --accent:        var(--gold);
  --turquoise:     var(--blue-light);
  --font-heading:  var(--font-serif);
  --bg-light:      var(--grey-50);
}

/* Button aliases */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-accent {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  font-weight: 600;
}
.btn-accent:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  font-weight: 600;
}
.btn-secondary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

/* FAB aliases (v1 inner pages) */
.floating-actions { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.fab-whatsapp { background: #25D366; font-size: 1.2rem; }
.fab-call     { background: var(--blue); font-size: 1.2rem; }
.fab-top      { background: #0B1F42; border: 1px solid rgba(30,176,229,0.25); font-size: 1.2rem; color: white; }

/* Footer grid (v1 inner pages) */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Footer brand text */
.footer-brand p {
  color: rgba(255,255,255,0.42);
  font-size: 0.85rem;
  line-height: 1.75;
  margin: 16px 0 24px;
}

/* Footer col headings */
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

/* Footer links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-contact-item .ic { flex-shrink: 0; }
.footer-contact-item a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}
.footer-contact-item a:hover { color: var(--white); }

/* Footer bottom (v1) */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.22);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--white); }

/* Footer social (v1) */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

/* Service icon wrap (v1 about/services pages) */
.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.service-icon-wrap.blue  { background: var(--blue-pale); }
.service-icon-wrap.green { background: var(--green-pale); }

/* Section header on light backgrounds */
.section-header.light h2 { color: var(--text-dark); }
.section-header.light p  { color: var(--text-muted); }
.section-header.light .section-label { color: var(--green); }
.section-header.light .section-label::before { background: var(--green); }

/* Responsive legacy grid */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Tag / pill label ── */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

/* ── Alternate section background ── */
.section-bg { background: var(--grey-50); }   /* = #F4F9FF (bleu-blanc clair) */

/* ── Service icon wrap extras ── */
.service-icon-wrap.gold     { background: var(--gold-pale); }
.service-icon-wrap.turquoise { background: var(--blue-pale); }

/* ── Social link (v1 alias) ── */
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

/* ── Check list ── */
.check-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  align-items: flex-start;
}
.check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Steps layout ── */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-200);
}
.step-item:last-child { border-bottom: none; }
.step-number {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
}
.step-content h4 { margin-bottom: 4px; font-size: 0.95rem; }
.step-content p  { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ── Service detail cards (services.html) ── */
.service-detail-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-detail-header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 32px 28px;
  color: var(--white);
}
.service-detail-header h3 { color: var(--white); margin-bottom: 8px; font-size: 1.15rem; }
.service-detail-header p  { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }
.svc-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-detail-body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 20px; }
.service-benefits h4 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.benefit-item {
  display: flex;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-body);
  align-items: flex-start;
}
.benefit-item .dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
}
.service-target {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--grey-50);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
}

/* ── Form submit row ── */
.form-submit-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* ── Contact grid (contact.html v1) ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(160deg, #0B1F42 0%, #163570 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  color: var(--white);
  position: sticky;
  top: 96px;
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-text strong { display: block; color: var(--white); font-size: 0.82rem; margin-bottom: 2px; }
.contact-info-text span,
.contact-info-text a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.contact-info-text a:hover { color: var(--white); }
.contact-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 20px 0; }
.contact-social { display: flex; gap: 8px; }
.contact-map {
  margin-top: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.map-placeholder-icon { font-size: 1.5rem; }

/* ── News date (v1 inner pages) ── */
.news-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.news-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 8px;
}

/* ── News image placeholder (v1 news cards) ── */
.news-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 3rem;
  gap: 0;
  flex-direction: column;
}
.news-img .news-cat {
  position: absolute;
  bottom: 10px; left: 12px;
  background: rgba(255,255,255,0.9);
  color: var(--dark-900);
  border-radius: var(--radius-full);
  padding: 2px 10px;
}
.news-img.pharma  { background: linear-gradient(135deg, #0B1220, #1B3A72); }
.news-img.sante   { background: linear-gradient(135deg, #0D2B1A, #1B7A55); }
.news-img.marche  { background: linear-gradient(135deg, #2A1A08, #6B4A1A); }
.news-img.souverainete { background: linear-gradient(135deg, #1A0A2A, #5A3A8A); }
.news-img.thialie { background: linear-gradient(135deg, #0A2040, #1493BF); }

/* ── News featured header card ── */
.news-header-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.news-header-img {
  background: linear-gradient(135deg, #0A1220, #1493BF);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.news-header-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-header-body h2 { font-size: 1.5rem; margin-bottom: 16px; }

/* ── Tabs (v1 actualites) ── */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}
.tab-btn:hover { background: var(--grey-200); color: var(--text-dark); }
.tab-btn.active {
  background: var(--gold);
  color: var(--dark-900);
  border-color: var(--gold);
  font-weight: 600;
}

/* Responsive extras */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .news-header-card { grid-template-columns: 1fr; }
  .news-header-img { min-height: 200px; }
}
@media (max-width: 768px) {
  .service-detail-card + .service-detail-card { margin-top: 0; }
}

/* ============================================
   ABOUT PAGE — MISSING COMPONENT STYLES
   ============================================ */

/* ── Présentation / Histoire grid ── */
.presentation-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: start;
}

.presentation-visual { position: relative; }

.presentation-img-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.presentation-img-placeholder h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin: 0;
}
.presentation-img-placeholder p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.big-icon {
  font-size: 3.5rem;
  line-height: 1;
  display: block;
}

.presentation-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0B1F42, #1B3A72);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
}
.presentation-badge strong {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.presentation-badge span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
}

/* ── Mission / Vision grid ── */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ── Values grid — card variant ── */
.value-card {
  background: var(--white);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.value-card:hover { background: var(--cream); }
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.value-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Team avatar & role ── */
.team-avatar {
  height: 120px;
  background: linear-gradient(135deg, var(--dark-800), var(--dark-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.team-role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* ── Director card (about page layout) ── */
.director-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.director-card .director-visual {
  background: rgba(255,255,255,0.06);
  padding: 52px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.director-avatar {
  font-size: 3rem;
  width: 96px;
  height: 96px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(30,176,229,0.3);
}
.director-years {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  text-align: center;
  line-height: 1.5;
}
.director-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.7;
  display: block;
  margin-bottom: 20px;
}
.director-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.sig-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.director-signature span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── Responsive: about page ── */
@media (max-width: 960px) {
  .presentation-grid   { grid-template-columns: 1fr; gap: 40px; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .director-card       { grid-template-columns: 1fr; }
  .director-card .director-visual { padding: 40px 32px; }
  .director-content    { padding: 32px; }
}
@media (max-width: 768px) {
  .director-content { padding: 24px; }
}
