/* ══════════════════════════════════════════════
   BS-SÉCURITÉ — Feuille de styles principale
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --bg:           #0a0e1a;
  --bg-card:      #131829;
  --bg-mid:       #0e1220;
  --bg-footer:    #050810;
  --primary:      #1e6fc4;
  --primary-dark: #1859a0;
  --primary-glow: rgba(30,111,196,0.25);
  --border:       rgba(255,255,255,0.10);
  --border-card:  rgba(255,255,255,0.08);
  --white:        #f2f2f2;
  --white-60:     rgba(242,242,242,0.60);
  --white-40:     rgba(242,242,242,0.40);
  --white-25:     rgba(242,242,242,0.25);
  --white-10:     rgba(242,242,242,0.08);
  --radius:       0.5rem;
  --radius-lg:    0.875rem;
  --radius-xl:    1.25rem;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.1; }
p { line-height: 1.7; }

/* ── Layout helpers ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--dark  { background: var(--bg); }
.section--card  { background: var(--bg-card); }
.section--mid   { background: var(--bg-mid); }

/* ── Grid ── */
.grid-2  { display: grid; grid-template-columns: repeat(2,1fr);  gap: 1.5rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr);  gap: 1.5rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr);  gap: 1.5rem; }
.grid-5  { display: grid; grid-template-columns: repeat(5,1fr);  gap: 1rem; }
@media(max-width:1024px){
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:768px){
  .grid-2,.grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px){
  .grid-4,.grid-5 { grid-template-columns: 1fr 1fr; }
}

/* ── Typography ── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white-60 { color: var(--white-60); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900; color: var(--white); margin-bottom: 1.25rem;
}
.section-desc { color: var(--white-60); font-size: 1rem; max-width: 600px; }
.section-divider {
  width: 3rem; height: 3px;
  background: var(--primary); border-radius: 2px;
  margin-bottom: 1.5rem;
}
.section-divider--center { margin-left: auto; margin-right: auto; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gap-4 { gap: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.875rem; letter-spacing: 0.03em;
  padding: 0.85rem 1.75rem; border-radius: var(--radius);
  cursor: pointer; border: none; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(30,111,196,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ── Badge / pill ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(30,111,196,0.15);
  border: 1px solid rgba(30,111,196,0.35);
  border-radius: 9999px;
  color: #7ab9f0; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,111,196,0.5);
  box-shadow: 0 0 30px rgba(30,111,196,0.12);
}
.card-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.625rem;
  background: rgba(30,111,196,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; flex-shrink: 0;
}
.card-icon svg { width: 1.1rem; height: 1.1rem; color: var(--primary); }
.card-icon svg path, .card-icon svg rect, .card-icon svg circle, .card-icon svg polyline, .card-icon svg line, .card-icon svg polygon {
  stroke: var(--primary);
}
.card-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.card-desc  { font-size: 0.78rem; color: var(--white-60); line-height: 1.6; }
.card-link  { font-size: 0.78rem; color: var(--primary); font-weight: 700; margin-top: auto; display: flex; align-items: center; gap: 0.25rem; }

/* ── Icon circle ── */
.icon-circle {
  width: 2.75rem; height: 2.75rem; border-radius: 9999px;
  background: rgba(30,111,196,0.2); border: 1px solid rgba(30,111,196,0.35);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── Benefit list ── */
.benefit-item {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.83rem; color: var(--white-60);
  padding: 0.625rem 0.875rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius); margin-bottom: 0.5rem;
}
.benefit-item::before {
  content: ''; width: 0.5rem; height: 0.5rem;
  border-radius: 9999px; background: var(--primary); flex-shrink: 0;
}

/* ── Inline flex helpers ── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ── Reveal animation ── */
.bs-reveal {
  opacity: 0; transform: translateY(2rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.bs-reveal.revealed { opacity: 1; transform: translateY(0); }
.bs-reveal.delay-1 { transition-delay: 0.1s; }
.bs-reveal.delay-2 { transition-delay: 0.2s; }
.bs-reveal.delay-3 { transition-delay: 0.3s; }
.bs-reveal.delay-4 { transition-delay: 0.4s; }
.bs-reveal.delay-5 { transition-delay: 0.5s; }
.bs-reveal.delay-6 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#bs-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
  background: transparent;
}
#bs-navbar.scrolled {
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 2.5rem; width: auto; filter: brightness(0) invert(1); }
.nav-logo-text {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.1rem; color: var(--white); letter-spacing: 0.03em;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a, .nav-links button {
  padding: 0.5rem 1rem; border-radius: 0.375rem;
  font-size: 0.8rem; font-weight: 600;
  color: rgba(242,242,242,0.8);
  transition: color 0.2s, background 0.2s;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.25rem;
  white-space: nowrap;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links button:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.10); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 0.25rem;
  min-width: 260px;
  background: #131829; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.625rem; box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-dropdown-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 1rem;
  font-size: 0.825rem; color: rgba(242,242,242,0.7);
  transition: color 0.2s, background 0.2s; border-radius: 0;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-dropdown-menu .dropdown-all {
  color: rgba(242,242,242,0.5); font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 0.25rem;
}
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: rgba(242,242,242,0.65);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--white); }
.nav-phone svg { width: 0.875rem; height: 0.875rem; }
.nav-cta { display: inline-flex; }
/* Mobile */
.nav-mobile-toggle {
  display: none; background: none; border: none; color: var(--white);
  cursor: pointer; padding: 0.35rem;
}
.nav-mobile-toggle svg { width: 1.375rem; height: 1.375rem; }
.hidden { display: none !important; }
#bs-mobile-menu {
  display: none; flex-direction: column; padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,14,26,0.99);
}
#bs-mobile-menu.open { display: flex; }
#bs-mobile-menu a, #bs-mobile-menu button {
  padding: 0.75rem 0.5rem; font-size: 0.9rem; color: rgba(242,242,242,0.75);
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); width: 100%; display: block;
  transition: color 0.2s; border-bottom: 1px solid rgba(255,255,255,0.04);
}
#bs-mobile-menu a:hover, #bs-mobile-menu button:hover { color: var(--white); }
.mobile-sub { margin-left: 1rem; border-left: 2px solid rgba(30,111,196,0.3); padding-left: 0.75rem; }
.mobile-sub a { font-size: 0.8rem; color: rgba(242,242,242,0.5); border-bottom: none; padding: 0.5rem 0; }
#bs-mobile-services-menu { display: none; }
#bs-mobile-services-menu.open { display: block; }
.mobile-cta-wrap { padding-top: 1rem; }
.mobile-cta-wrap .btn { width: 100%; justify-content: center; }

@media(max-width:1024px){
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 7rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(30,111,196,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(30,111,196,0.14) 0%, transparent 50%),
    linear-gradient(180deg, #0a0e1a 0%, #06090f 100%);
}
.hero-glow-1 {
  position: absolute; top: 25%; left: 25%; width: 24rem; height: 24rem;
  border-radius: 9999px; background: rgba(30,111,196,0.08); filter: blur(80px);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: 25%; right: 25%; width: 16rem; height: 16rem;
  border-radius: 9999px; background: rgba(30,111,196,0.06); filter: blur(60px);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.hero-badge { margin-bottom: 2rem; }
.hero-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 900; color: var(--white); letter-spacing: -0.02em;
  line-height: 0.95; margin-bottom: 1.5rem;
}
.hero-slogan {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(0.7rem, 2vw, 0.9rem); letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(242,242,242,0.55);
  margin-bottom: 2rem;
}
.hero-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--white-60); max-width: 640px; margin: 0 auto 3rem;
  line-height: 1.75;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-bottom: 4rem;
}
.hero-scroll {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; color: rgba(242,242,242,0.3); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.15em;
}
.hero-scroll svg { width: 1rem; height: 1rem; animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ── Hero animation ── */
.hero-animate { animation: heroFadeUp 0.7s ease forwards; opacity: 0; }
.delay-hero-1 { animation-delay: 0.1s; }
.delay-hero-2 { animation-delay: 0.2s; }
.delay-hero-3 { animation-delay: 0.3s; }
.delay-hero-4 { animation-delay: 0.4s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(1.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════ */
.stats-band { padding: 3.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-size: clamp(2rem,5vw,2.75rem);
  font-weight: 900; color: var(--white); margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.78rem; color: var(--white-60); }
.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-card); border-radius: var(--radius-lg);
  padding: 1.5rem 1rem; text-align: center;
  transition: border-color 0.3s;
}
.stat-box:hover { border-color: rgba(30,111,196,0.4); }

/* ═══════════════════════════════════════════
   SECTEUR PILLS
═══════════════════════════════════════════ */
.secteurs-band { padding: 3.5rem 0; background: var(--bg-card); }
.secteurs-list { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.secteur-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 9999px; font-size: 0.825rem; font-weight: 500;
  color: rgba(242,242,242,0.75); transition: border-color 0.2s, color 0.2s;
}
.secteur-pill svg { width: 0.875rem; height: 0.875rem; }
.secteur-pill svg path, .secteur-pill svg polyline, .secteur-pill svg line {
  stroke: var(--primary);
}
.secteur-pill:hover { border-color: rgba(30,111,196,0.4); color: var(--white); }
.secteurs-label {
  text-align: center; font-size: 0.7rem; color: rgba(242,242,242,0.35);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════
   SERVICE CARDS GRID
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-card);
  border-radius: var(--radius-xl); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,111,196,0.5);
  box-shadow: 0 0 30px rgba(30,111,196,0.12);
}
.service-card-header { display: flex; gap: 1rem; align-items: flex-start; }
.service-card-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.service-card-desc { font-size: 0.82rem; color: var(--white-60); line-height: 1.65; }
.service-card-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.service-benefit { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--white-60); }
.service-benefit::before { content:''; width:0.375rem;height:0.375rem;border-radius:9999px;background:var(--primary);flex-shrink:0; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.8rem; font-weight: 700; color: var(--primary);
  margin-top: auto; transition: gap 0.2s;
}
.service-link:hover { gap: 0.5rem; }

/* ═══════════════════════════════════════════
   POURQUOI
═══════════════════════════════════════════ */
.pourquoi-item {
  display: flex; gap: 1rem;
  padding: 1.25rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}
.pourquoi-item:hover { border-color: rgba(30,111,196,0.3); }
.pourquoi-title { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.pourquoi-desc { font-size: 0.78rem; color: var(--white-60); }

/* ═══════════════════════════════════════════
   METHODE TIMELINE
═══════════════════════════════════════════ */
.methode-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; position: relative;
}
.methode-grid::before {
  content: ''; position: absolute; top: 2rem; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,111,196,0.4), transparent);
}
.methode-step { text-align: center; padding: 1.5rem 1rem; }
.methode-num {
  width: 4rem; height: 4rem; border-radius: 9999px;
  background: rgba(30,111,196,0.2); border: 1px solid rgba(30,111,196,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-family: var(--font-heading); font-weight: 900;
  font-size: 1.25rem; color: var(--primary); position: relative; z-index: 1;
}
.methode-title { font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 0.625rem; }
.methode-desc { font-size: 0.78rem; color: var(--white-60); line-height: 1.6; }
@media(max-width:768px){
  .methode-grid { grid-template-columns: 1fr 1fr; }
  .methode-grid::before { display: none; }
}
@media(max-width:480px){
  .methode-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   ENGAGEMENT CARDS
═══════════════════════════════════════════ */
.engagement-item {
  text-align: center; padding: 1.5rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); transition: border-color 0.3s;
}
.engagement-item:hover { border-color: rgba(30,111,196,0.3); }
.engagement-icon { margin: 0 auto 0.875rem; }
.engagement-title { font-size: 0.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.engagement-desc { font-size: 0.75rem; color: var(--white-60); line-height: 1.6; }

/* ═══════════════════════════════════════════
   CTA BLOCKS
═══════════════════════════════════════════ */
.cta-blue {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, hsl(220 35% 10%) 0%, hsl(214 55% 18%) 100%);
  text-align: center;
}
.cta-title { font-size: clamp(1.5rem,4vw,2.2rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; }
.cta-desc { color: var(--white-60); margin-bottom: 2rem; font-size: 1rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-phone {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--white); text-decoration: none;
}
.cta-phone .phone-circle {
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: rgba(30,111,196,0.2); border: 1px solid rgba(30,111,196,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cta-phone:hover .phone-circle { background: rgba(30,111,196,0.35); }
.cta-phone .phone-number { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; }
.cta-phone .phone-sub { font-size: 0.7rem; color: var(--white-40); }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-cards { margin-bottom: 3rem; }
.contact-card {
  padding: 1.25rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(30,111,196,0.4); }
.contact-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--white-40); margin-bottom: 0.3rem; }
.contact-value { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.contact-sub { font-size: 0.75rem; color: var(--white-40); margin-top: 0.2rem; }
.contact-icon-wrap { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(30,111,196,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 0.875rem; }
.contact-icon-wrap.green { background: rgba(34,197,94,0.2); }
.contact-icon-wrap svg { width: 1.1rem; height: 1.1rem; }
.contact-icon-wrap svg path, .contact-icon-wrap svg polyline, .contact-icon-wrap svg line, .contact-icon-wrap svg rect, .contact-icon-wrap svg circle { stroke: var(--primary); }
.contact-icon-wrap.green svg path, .contact-icon-wrap.green svg polyline { stroke: #22c55e; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media(max-width:768px){ .contact-layout { grid-template-columns: 1fr; } }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); height: 280px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg); }
.zones-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 1.5rem; margin-top: 1.5rem; }
.zone-region { color: var(--primary); font-weight: 600; font-size: 0.8rem; margin-bottom: 0.2rem; }
.zone-villes { color: var(--white-60); font-size: 0.75rem; }

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
.bs-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.82rem; font-weight: 500; color: var(--white-60); }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 0.8rem 1rem;
  color: var(--white); font-size: 0.875rem; font-family: var(--font-body);
  width: 100%; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(242,242,242,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-textarea { resize: none; height: 130px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' 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 1rem center; padding-right: 2.5rem; }
.form-select option { background: #131829; color: var(--white); }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; font-size: 0.925rem; }

/* ═══════════════════════════════════════════
   MENTIONS / CONFIDENTIALITE
═══════════════════════════════════════════ */
.legal-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-xl); padding: 2.5rem; }
.legal-section { margin-bottom: 2rem; }
.legal-section:last-child { margin-bottom: 0; }
.legal-h2 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.legal-text { font-size: 0.875rem; color: var(--white-60); line-height: 1.8; }
.legal-text p + p { margin-top: 0.75rem; }
.legal-text ul { list-style: disc; padding-left: 1.5rem; margin-top: 0.5rem; }
.legal-text ul li { margin-bottom: 0.3rem; }
.legal-text a { color: var(--primary); text-decoration: underline; }
.legal-meta { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; font-size: 0.82rem; }
.legal-meta-item span:first-child { color: var(--white-40); }
.legal-meta-item span:last-child { color: var(--white-60); }
@media(max-width:600px){ .legal-meta { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   A PROPOS
═══════════════════════════════════════════ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:900px){ .about-layout { grid-template-columns: 1fr; } }
.about-checks { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.about-check { display: flex; align-items: center; gap: 0.625rem; font-size: 0.85rem; color: var(--white-60); }
.about-check::before { content:''; width: 0.875rem; height: 0.875rem; border-radius: 9999px; background: rgba(30,111,196,0.3); border: 1.5px solid var(--primary); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   REFERENCES
═══════════════════════════════════════════ */
.mission-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 1.25rem;
  transition: border-color 0.3s;
}
.mission-item:hover { border-color: rgba(30,111,196,0.3); }
.mission-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.625rem; }
.mission-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--primary); margin-right: 0.375rem; display: inline-block; }
.mission-secteur { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.mission-region { color: var(--white-40); font-size: 0.8rem; margin-left: 0.5rem; }
.mission-badge { background: rgba(30,111,196,0.15); border: 1px solid rgba(30,111,196,0.3); border-radius: 9999px; padding: 0.25rem 0.75rem; font-size: 0.7rem; font-weight: 600; color: var(--primary); }
.mission-desc { font-size: 0.82rem; color: var(--white-60); line-height: 1.65; }

/* ═══════════════════════════════════════════
   SERVICE INDIVIDUAL PAGE
═══════════════════════════════════════════ */
.service-page-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
@media(max-width:900px){ .service-page-layout { grid-template-columns: 1fr; } }
.service-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:600px){ .service-benefits-grid { grid-template-columns: 1fr; } }
.service-benefit-card {
  background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg);
  padding: 1.25rem; transition: border-color 0.3s;
}
.service-benefit-card:hover { border-color: rgba(30,111,196,0.4); }
.service-benefit-title { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.service-benefit-desc { font-size: 0.78rem; color: var(--white-60); line-height: 1.6; }
.service-includes { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 0.625rem; }
.service-include-item {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem;
  color: var(--white-60); padding: 0.75rem 0.875rem;
  background: rgba(255,255,255,0.04); border-radius: var(--radius);
}
.service-include-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--primary); flex-shrink: 0; }
.service-back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--white-40); font-size: 0.8rem; margin-bottom: 1.5rem; transition: color 0.2s; }
.service-back:hover { color: var(--white); }
.service-text { font-size: 0.875rem; color: var(--white-60); line-height: 1.8; }
.service-text p + p { margin-top: 0.875rem; }

/* ═══════════════════════════════════════════
   RECRUTEMENT AVANTAGES
═══════════════════════════════════════════ */
.avantage-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.25rem; font-size: 0.85rem; color: var(--white-60);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius);
}
.avantage-item::before { content: ''; width:1rem;height:1rem;border-radius:9999px;background:rgba(30,111,196,0.3);border:1.5px solid var(--primary);flex-shrink:0; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#bs-footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-main { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
@media(max-width:1024px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 2.25rem; width: auto; filter: brightness(0) invert(0.75); }
.footer-logo-text { font-family: var(--font-heading); font-weight: 700; color: var(--white); font-size: 1.05rem; }
.footer-slogan { font-size: 0.8rem; color: var(--white-40); margin-bottom: 1rem; }
.footer-desc { font-size: 0.78rem; color: rgba(242,242,242,0.35); line-height: 1.65; }
.footer-linkedin {
  width: 2rem; height: 2rem; border-radius: 9999px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  margin-top: 1.25rem; transition: background 0.2s;
}
.footer-linkedin:hover { background: rgba(255,255,255,0.15); }
.footer-linkedin svg { width: 1rem; height: 1rem; fill: var(--white); }
.footer-col-title {
  font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col-links a { font-size: 0.8rem; color: rgba(242,242,242,0.45); transition: color 0.2s; }
.footer-col-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item svg path, .footer-contact-item svg polyline, .footer-contact-item svg circle { stroke: var(--primary); }
.footer-contact-text { font-size: 0.8rem; color: rgba(242,242,242,0.55); }
.footer-contact-text a { color: rgba(242,242,242,0.7); transition: color 0.2s; }
.footer-contact-text a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
}
.footer-legal { font-size: 0.7rem; color: rgba(242,242,242,0.25); line-height: 1.7; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { font-size: 0.72rem; color: rgba(242,242,242,0.28); transition: color 0.2s; }
.footer-links a:hover { color: rgba(242,242,242,0.6); }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  padding: 9rem 1.5rem 4.5rem;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(30,111,196,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0a0e1a 0%, #06090f 100%);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-glow {
  position: absolute; top: 30%; left: 30%; width: 20rem; height: 20rem;
  border-radius: 9999px; background: rgba(30,111,196,0.08); filter: blur(70px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero-title { font-size: clamp(2rem,6vw,3.75rem); font-weight: 900; color: var(--white); margin-bottom: 1.25rem; }
.page-hero-desc { font-size: 1rem; color: var(--white-60); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ── Service page hero — left aligned ── */
.service-hero {
  padding: 9rem 1.5rem 4.5rem;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(30,111,196,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0a0e1a 0%, #06090f 100%);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.service-hero .container { position: relative; z-index: 1; max-width: 800px; }
.service-hero-title { font-size: clamp(2rem,6vw,3.5rem); font-weight: 900; color: var(--white); margin-bottom: 1.25rem; }
.service-hero-desc { font-size: 1rem; color: var(--white-60); max-width: 600px; line-height: 1.8; margin-bottom: 2rem; }
.service-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.bs-toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: #1a2744; border: 1px solid rgba(30,111,196,0.5);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  max-width: 340px; transform: translateX(110%);
  transition: transform 0.4s ease; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.bs-toast.show { transform: translateX(0); }
.bs-toast strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 0.3rem; }
.bs-toast p { font-size: 0.8rem; color: var(--white-60); }

/* ═══════════════════════════════════════════
   WORDPRESS OVERRIDES
═══════════════════════════════════════════ */
.wp-site-content { padding: 0; }
#wpadminbar { background: #0a0e1a !important; }
body.admin-bar #bs-navbar { top: 32px; }
@media(max-width:782px){ body.admin-bar #bs-navbar { top: 46px; } }
