/* ═══════════════════════════════════════════════
   INGTELMA — Corporate Website Stylesheet v2
   Brand: #523F8D (Purple) | #D86E27 (Orange)
   NO gradients except: hero highlight, active nav, stat numbers
   ═══════════════════════════════════════════════ */

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

/* ── CSS Custom Properties ── */
:root {
  --primary-purple: #523F8D;
  --primary-orange: #D86E27;
  --primary-orange-hover: #B85A1F;
  --accent-gradient: linear-gradient(135deg, #523F8D, #D86E27);
  --font-latin: 'Montserrat', sans-serif;
  --font-arabic: 'Cairo', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 50px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 70px rgba(0,0,0,0.18);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-height: 80px;
  --topbar-height: 40px;
}

/* ── Dark Theme ── */
:root[data-theme="dark"] {
  --bg: #0A0A14;
  --card: #12122A;
  --surface: #111120;
  --text: #FFFFFF;
  --text-muted: #94A3B8;
  --text-heading: #FFFFFF;
  --border: rgba(82, 63, 141, 0.3);
  --border-light: rgba(255, 255, 255, 0.08);
  --topbar-bg: #1a0e2a;
  --navbar-bg: rgba(10, 10, 20, 0.85);
  --navbar-scrolled: rgba(10, 10, 20, 0.95);
  --card-hover-shadow: 0 16px 56px rgba(82, 63, 141, 0.22);
  --input-bg: #1A1A35;
  --footer-bg: #07070E;
}

/* ── Light Theme ── */
:root[data-theme="light"] {
  --bg: #F8F8FC;
  --card: #FFFFFF;
  --surface: #EEF0F8;
  --text: #1A1A2E;
  --text-muted: #64748B;
  --text-heading: #1A1A2E;
  --border: rgba(82, 63, 141, 0.15);
  --border-light: rgba(0, 0, 0, 0.06);
  --topbar-bg: #1a0e2a;
  --navbar-bg: rgba(248, 248, 252, 0.85);
  --navbar-scrolled: rgba(248, 248, 252, 0.95);
  --card-hover-shadow: 0 16px 56px rgba(82, 63, 141, 0.1);
  --input-bg: #EEF0F8;
  --footer-bg: #0A0A14;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height) + var(--topbar-height) + 20px);
}

body {
  font-family: var(--font-latin);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

[dir="rtl"] body, [dir="rtl"] * { font-family: var(--font-arabic); }

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

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 72px; }

.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: var(--radius-xl);
  background: rgba(82, 63, 141, 0.08); border: 1px solid var(--border);
  font-size: 0.8rem; font-weight: 700; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary-purple);
}
:root[data-theme="dark"] .section-badge { color: #B8A9E0; }

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--text-heading); margin-bottom: 20px; line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 640px; margin: 0 auto; line-height: 1.8;
}

/* Section divider accent */
.section-divider-orange {
  width: 60px; height: 3px; background: var(--primary-orange);
  margin: 0 auto 20px; border-radius: 2px;
}

/* ══════════════════════════════════
   BUTTONS — Solid only, NO gradients
   ══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-xl);
  font-weight: 600; font-size: 0.95rem; transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-orange); color: #FFFFFF; border: none;
}
.btn-primary:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(216, 110, 39, 0.3);
}

.btn-outline {
  background: transparent; color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
}
.btn-outline:hover {
  background: var(--primary-purple); color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 24px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ══════════════════════════════════
   TOP BAR
   ══════════════════════════════════ */
.top-bar {
  background: #1a0e2a;
  width: 100%;
  position: relative;
  z-index: 999;
}
.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 400;
}
.top-bar-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.top-bar-social a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.top-bar-social a:hover {
  color: #ffffff;
  background: #D86E27;
  border-color: #D86E27;
  transform: translateY(-2px);
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}
.top-bar-contact a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.top-bar-contact a:hover {
  color: #D86E27;
}
.top-bar-contact i {
  color: #D86E27;
  font-size: 11px;
}
.top-bar .divider {
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .top-bar-tagline { display: none; }
  .top-bar-social { display: none; }
  .top-bar-inner { justify-content: center; }
}

/* ══════════════════════════════════
   NAVBAR
   ══════════════════════════════════ */
.navbar {
  position: sticky; top: 0; left: 0; right: 0;
  height: var(--navbar-height); background: var(--navbar-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 1000; transition: all var(--transition);
  border-bottom: 1px solid var(--border-light);
}
.navbar.scrolled { background: var(--navbar-scrolled); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text-fallback {
  display: none;
  white-space: nowrap;
}

.navbar-menu { display: flex; align-items: center; gap: 2px; }
.navbar-menu > li { position: relative; }
.navbar-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 14px; font-size: 0.85rem; font-weight: 500;
  color: var(--text); border-radius: var(--radius-sm); transition: all var(--transition);
  white-space: nowrap;
}
.navbar-menu > li > a:hover,
.navbar-menu > li > a.active { color: var(--primary-purple); background: rgba(82, 63, 141, 0.08); }

/* Active nav indicator — gradient allowed here */
.navbar-menu > li > a.active { position: relative; }
.navbar-menu > li > a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px; border-radius: 2px;
  background: var(--accent-gradient);
}

.navbar-menu > li > a .dropdown-arrow { font-size: 0.6rem; transition: transform var(--transition); }
.navbar-menu > li:hover > a .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 8px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition); z-index: 100;
}
[dir="rtl"] .dropdown-menu { left: auto; right: 0; }
.navbar-menu > li:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 0.85rem; font-weight: 500;
  color: var(--text); border-radius: var(--radius-sm); transition: all var(--transition);
}
.dropdown-menu a:hover { background: rgba(82, 63, 141, 0.08); color: var(--primary-purple); }
.dropdown-menu a i { color: var(--primary-orange); width: 20px; text-align: center; }

/* Navbar Right */
.navbar-right { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); color: var(--text); font-size: 1.1rem;
  transition: all var(--transition); border: 1px solid var(--border-light);
}
.theme-toggle:hover { background: rgba(82, 63, 141, 0.15); color: var(--primary-purple); }

.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: var(--surface); border-radius: var(--radius-xl);
  padding: 4px; border: 1px solid var(--border-light);
}
.lang-btn {
  padding: 6px 12px; font-size: 0.75rem; font-weight: 600;
  border-radius: var(--radius-xl); color: var(--text-muted); transition: all var(--transition);
}
.lang-btn.active { background: var(--primary-purple); color: #FFFFFF; }
.lang-btn:hover:not(.active) { color: var(--text); }

.navbar-contact-btn {
  padding: 10px 24px; background: var(--primary-orange); color: #FFFFFF;
  border-radius: var(--radius-xl); font-size: 0.85rem; font-weight: 600; transition: all var(--transition);
}
.navbar-contact-btn:hover { background: var(--primary-orange-hover); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 48px; height: 48px; cursor: pointer;
  position: relative; -webkit-tap-highlight-color: transparent;
}
.hamburger span { display: block; height: 2.5px; width: 28px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1050; opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed; top: 0; right: 0; width: 280px; max-width: 85vw;
  height: 100vh; background: var(--card); z-index: 1100;
  overflow-y: auto; padding: 80px 24px 40px; box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  flex-direction: column; display: flex;
}
[dir="rtl"] .mobile-menu { right: auto; left: 0; transform: translateX(-100%); }
.mobile-menu.active { transform: translateX(0); }
[dir="rtl"] .mobile-menu.active { transform: translateX(0); }

.mobile-menu-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-nav a {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  font-size: 0.95rem; font-weight: 500; color: var(--text);
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.mobile-menu-nav a:hover, .mobile-menu-nav a.active { background: rgba(82, 63, 141, 0.08); color: var(--primary-purple); }

.mobile-dropdown-title {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; font-size: 0.95rem; font-weight: 600;
  color: var(--text); cursor: pointer; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-dropdown-title:hover { background: rgba(82, 63, 141, 0.08); color: var(--primary-purple); }
.mobile-dropdown-title i {
  font-size: 0.65rem; color: var(--text-muted);
  transition: transform 0.3s ease;
}
.mobile-dropdown-content { display: none; padding-left: 16px; flex-direction: column; gap: 2px; }
[dir="rtl"] .mobile-dropdown-content { padding-left: 0; padding-right: 16px; }
.mobile-dropdown-content.open { display: flex; }
.mobile-dropdown-content a { font-size: 0.875rem; padding: 10px 16px; }

.mobile-menu-footer {
  margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border-light);
  display: flex; flex-direction: column; gap: 16px;
}
.mobile-menu-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.mobile-menu-actions .theme-toggle {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text); transition: all var(--transition);
}
.mobile-menu-actions .theme-toggle:hover { background: rgba(82,63,141,0.15); color: var(--primary-purple); }
.mobile-menu-actions .lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: var(--surface); border-radius: var(--radius-xl);
  padding: 4px; border: 1px solid var(--border-light);
}
.mobile-menu-actions .lang-btn {
  padding: 8px 14px; font-size: 0.8rem; font-weight: 600;
  border-radius: var(--radius-xl); color: var(--text-muted); transition: all var(--transition);
}
.mobile-menu-actions .lang-btn.active { background: var(--primary-purple); color: #FFFFFF; }
.mobile-menu-footer .mobile-social { display: flex; gap: 10px; }
.mobile-menu-footer .mobile-social a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--surface); border: 1px solid var(--border-light);
  color: var(--text-muted); font-size: 1rem; transition: all var(--transition);
}
.mobile-menu-footer .mobile-social a:hover { color: var(--primary-purple); border-color: rgba(82,63,141,0.3); }

@media (max-width: 1100px) {
  .navbar-menu, .navbar-contact-btn { display: none; }
  .hamburger { display: flex; flex-shrink: 0; }
}
@media (min-width: 1101px) {
  .mobile-menu-overlay { display: none !important; }
  .mobile-menu { display: none !important; }
}

/* ══════════════════════════════════
   HERO — Two Column Layout
   ══════════════════════════════════ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82,63,141,0.1);
  border: 1px solid rgba(82,63,141,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #523F8D;
  margin-bottom: 24px;
}
:root[data-theme="dark"] .hero-badge { color: #B8A9E0; }

.badge-dot {
  width: 8px;
  height: 8px;
  background: #D86E27;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* Title */
.hero-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-highlight {
  color: #D86E27;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  display: block;
  min-height: 1.3em;
}

.typed-cursor {
  color: #523F8D;
  font-weight: 300;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══ RIGHT VISUAL — Expertise Showcase ═══ */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 580px;
}

.expertise-showcase {
  position: relative;
  width: 560px;
  height: 560px;
  flex-shrink: 0;
}

/* Center logo */
.showcase-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.showcase-logo-ring {
  width: 130px; height: 130px;
  background: linear-gradient(135deg, #523F8D, #D86E27);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(82,63,141,0.15), 0 0 40px rgba(82,63,141,0.3), 0 0 80px rgba(216,110,39,0.15);
  position: relative; z-index: 2;
}

.showcase-logo-inner {
  width: 106px; height: 106px;
  background: var(--bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}

.showcase-logo-img { width: 80px; height: auto; object-fit: contain; }

/* Pulse rings */
.showcase-pulse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(82,63,141,0.3);
  animation: showcasePulse 3s ease-out infinite;
  z-index: 1;
}
.ring-a { width: 170px; height: 170px; animation-delay: 0s; }
.ring-b { width: 220px; height: 220px; animation-delay: 1s; border-color: rgba(216,110,39,0.2); }
.ring-c { width: 280px; height: 280px; animation-delay: 2s; border-color: rgba(82,63,141,0.1); }

@keyframes showcasePulse {
  0% { transform: translate(-50%,-50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(1.3); opacity: 0; }
}

/* Orbit rings */
.showcase-orbit-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 440px; height: 440px; border-radius: 50%;
  border: 1.5px dashed rgba(82,63,141,0.2);
  animation: orbitSpin 30s linear infinite;
  z-index: 1;
}
.showcase-orbit-ring::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%); width: 12px; height: 12px;
  background: #D86E27; border-radius: 50%;
  box-shadow: 0 0 10px rgba(216,110,39,0.6);
}
@keyframes orbitSpin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to { transform: translate(-50%,-50%) rotate(360deg); }
}
.showcase-inner-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(216,110,39,0.12);
  z-index: 1;
}

/* Hex grid */
.hex-grid {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}

.hex-item {
  position: absolute; display: flex; flex-direction: column;
  align-items: center; gap: 8px; cursor: pointer; z-index: 5;
  width: 90px;
}

/* Perfect circle positions: center=280,280 radius=220 */
.hex-1 { left: 235px; top: 15px; }   /* TOP — 90° */
.hex-2 { left: 425px; top: 125px; }  /* TOP-RIGHT — 30° */
.hex-3 { left: 425px; top: 345px; }  /* BOTTOM-RIGHT — 330° */
.hex-4 { left: 235px; top: 455px; }  /* BOTTOM — 270° */
.hex-5 { left: 45px; top: 345px; }   /* BOTTOM-LEFT — 210° */
.hex-6 { left: 45px; top: 125px; }   /* TOP-LEFT — 150° */

.hex-shape {
  width: 88px; height: 88px;
  background: var(--card); border: 2px solid var(--border);
  border-radius: 22px; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hex-item:hover .hex-shape {
  background: linear-gradient(135deg, rgba(82,63,141,0.15), rgba(216,110,39,0.15));
  border-color: #D86E27; transform: scale(1.15) translateY(-4px);
  box-shadow: 0 12px 30px rgba(216,110,39,0.25);
}

.hex-icon { font-size: 2rem; color: #523F8D; transition: all 0.3s; }
.hex-item:hover .hex-icon { color: #D86E27; transform: scale(1.1); }

.hex-shape::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 3px; background: #D86E27; border-radius: 2px;
  transition: transform 0.3s;
}
.hex-item:hover .hex-shape::after { transform: translateX(-50%) scaleX(1); }

.hex-label {
  font-size: 10px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  text-align: center; width: 90px; max-width: 90px; line-height: 1.3;
  transition: color 0.3s; white-space: normal; word-break: keep-all;
}
.hex-item:hover .hex-label { color: #D86E27; }

/* Auto-active state */
.hex-auto-active {
  border-color: #523F8D !important;
  background: rgba(82,63,141,0.1) !important;
}

/* Floating badges */
.showcase-badge {
  position: absolute; background: var(--card);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 18px; display: flex; flex-direction: column;
  align-items: center; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 8;
  min-width: 90px;
}

.badge-years {
  left: 50%; top: 50%;
  transform: translate(-200px, -60px);
  animation: floatBadge 3s ease-in-out infinite;
}
.badge-iso {
  left: 50%; top: 50%;
  transform: translate(100px, 30px);
  flex-direction: row; gap: 8px; padding: 10px 16px;
  animation: floatBadgeRight 3s ease-in-out infinite 1.5s;
}

@keyframes floatBadge {
  0%, 100% { transform: translate(-200px, -60px) translateY(0); }
  50% { transform: translate(-200px, -60px) translateY(-8px); }
}
@keyframes floatBadgeRight {
  0%, 100% { transform: translate(100px, 30px) translateY(0); }
  50% { transform: translate(100px, 30px) translateY(-8px); }
}

.showcase-badge strong { font-size: 1.2rem; font-weight: 900; color: #D86E27; line-height: 1; display: block; }
.showcase-badge span { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.badge-iso i { font-size: 1.1rem; color: #523F8D; }
.badge-iso span { font-size: 13px; font-weight: 700; color: var(--text); text-transform: none; letter-spacing: 0; }

/* Dark mode */
[data-theme="dark"] .hex-shape { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
[data-theme="dark"] .hex-item:hover .hex-shape { box-shadow: 0 12px 30px rgba(216,110,39,0.2); }

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-subtitle {
    max-width: 100%;
  }
}

/* ══════════════════════════════════
   PAGE BANNERS — Simple Centered
   ══════════════════════════════════ */
.page-banner {
  background: #1a0e2a;
  border-bottom: 4px solid #D86E27;
  box-shadow: 0 4px 30px rgba(216,110,39,0.4);
  padding: 60px 0;
  min-height: 200px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23523f8d' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(216,110,39,0.15) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
[dir="rtl"] .page-banner::after { right: auto; left: 0; clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 0% 100%); }

.page-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-banner-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.page-banner-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.page-banner-breadcrumb a:hover {
  color: #D86E27;
}
.page-banner-breadcrumb .separator {
  margin: 0 8px;
  color: rgba(255,255,255,0.3);
}
.page-banner-breadcrumb .current {
  color: #D86E27;
  font-weight: 600;
}

.page-banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
.page-banner-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #D86E27;
  margin: 16px auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .page-banner { padding: 40px 0; min-height: 160px; }
  .page-banner-inner { padding: 0 24px; }
}

/* ══════════════════════════════════
   STATS SECTION
   ══════════════════════════════════ */
.stats-section {
  padding: 80px 0; background: var(--surface);
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }

/* Gradient allowed on stat numbers */
.stat-item .stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 8px;
}
.stat-item .stat-label { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* ══════════════════════════════════
   KPI SECTION
   ══════════════════════════════════ */
.kpi-section { padding: 80px 0; background: var(--surface); }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kpi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px; position: relative;
  overflow: hidden; transition: all 0.3s;
}
.kpi-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, #523F8D, #D86E27);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.4s;
}
.kpi-card:hover::before { transform: scaleY(1); }
.kpi-card:hover {
  border-color: rgba(82,63,141,0.3); transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(82,63,141,0.12);
}
.kpi-primary {
  background: linear-gradient(135deg, #1a0e2a 0%, #2d1b4e 100%);
  border-color: rgba(216,110,39,0.3);
}
.kpi-primary .kpi-number span, .kpi-primary p { color: white; }
.kpi-primary .kpi-icon i { color: #D86E27; }
.kpi-icon {
  width: 50px; height: 50px; background: rgba(82,63,141,0.1);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.kpi-icon i { font-size: 1.3rem; color: #523F8D; }
.kpi-number { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.kpi-number span {
  font-size: 2.4rem; font-weight: 900; color: #D86E27;
  line-height: 1; font-family: 'Montserrat', sans-serif;
}
.kpi-unit { font-size: 1rem !important; color: var(--text-muted) !important; font-weight: 600 !important; }
.kpi-card p { font-size: 13px; color: var(--text-muted); margin: 0; }
@media (max-width: 1024px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .kpi-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   VALEUR AJOUTÉE SECTION
   ══════════════════════════════════ */
.valeur-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.valeur-points { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.valeur-point { display: flex; align-items: flex-start; gap: 16px; }
.vp-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, rgba(82,63,141,0.15), rgba(216,110,39,0.1));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.vp-icon i { font-size: 1.1rem; color: #D86E27; }
.valeur-point strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.valeur-point span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.valeur-visual { position: relative; height: 480px; }
.valeur-img-main { width: 100%; height: 100%; }
.valeur-img-main .img-placeholder { min-height: 480px; border-radius: 24px; }
.valeur-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: linear-gradient(135deg, #523F8D, #1a0e2a);
  border-radius: 20px; padding: 24px 28px;
  box-shadow: 0 16px 40px rgba(82,63,141,0.4);
}
.vib-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.vib-inner i { font-size: 1.8rem; color: #D86E27; }
.vib-inner strong { font-size: 1.2rem; font-weight: 800; color: white; }
.vib-inner span { font-size: 12px; color: rgba(255,255,255,0.7); }
@media (max-width: 1024px) {
  .valeur-grid { grid-template-columns: 1fr; }
  .valeur-visual { height: 300px; margin-bottom: 40px; }
}

/* ══════════════════════════════════
   SERVICE CARDS — Clean, no gradient bg
   ══════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary-orange); opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--card-hover-shadow); border-color: var(--border); }
.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: rgba(82, 63, 141, 0.08); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 20px; color: var(--primary-purple);
}
:root[data-theme="dark"] .service-card-icon { color: #B8A9E0; }

.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-heading); margin-bottom: 14px; letter-spacing: -0.02em; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }

.service-card .card-link {
  font-size: 0.875rem; font-weight: 600; color: var(--primary-orange);
  display: flex; align-items: center; gap: 6px; transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 10px; }

@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.why-item {
  text-align: center; padding: 36px 24px;
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-item:hover { transform: translateY(-6px); box-shadow: var(--card-hover-shadow); border-color: var(--border); }

.why-item-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(82, 63, 141, 0.08); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.4rem; color: var(--primary-purple);
}
:root[data-theme="dark"] .why-item-icon { color: #B8A9E0; }
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--text-heading); line-height: 1.45; letter-spacing: -0.01em; }

@media (max-width: 992px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .why-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   CERTIFICATIONS
   ══════════════════════════════════ */
.cert-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }

.cert-badge {
  padding: 24px 36px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-align: center; transition: all var(--transition); min-width: 200px;
}
.cert-badge:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); border-color: var(--primary-purple); }
.cert-badge .cert-icon { font-size: 2rem; margin-bottom: 12px; color: var(--primary-orange); }
.cert-badge h4 { font-size: 1.1rem; font-weight: 700; color: var(--text-heading); }
.cert-badge p { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.cert-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden;
}
.cert-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary-orange);
}
.cert-card:hover { transform: translateY(-8px); box-shadow: var(--card-hover-shadow); border-color: var(--primary-purple); }

.cert-card-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(82, 63, 141, 0.08); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem; color: var(--primary-purple);
}
:root[data-theme="dark"] .cert-card-icon { color: #B8A9E0; }
.cert-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.cert-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 992px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .cert-grid { grid-template-columns: 1fr; } }

/* Qualifications List */
.qualifications-list { max-width: 900px; margin: 0 auto; }
.qualification-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); margin-bottom: 12px; transition: all var(--transition);
}
.qualification-item:hover { border-color: var(--primary-purple); transform: translateX(4px); }
[dir="rtl"] .qualification-item:hover { transform: translateX(-4px); }
.qualification-item .q-number {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-orange); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.qualification-item p { font-size: 0.95rem; color: var(--text); line-height: 1.5; }

/* ══════════════════════════════════
   LOGOS GRID
   ══════════════════════════════════ */
.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 40px; }
.logo-badge {
  padding: 16px 28px; background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); font-weight: 700; font-size: 0.9rem;
  color: var(--text-heading); transition: all var(--transition); white-space: nowrap;
}
.logo-badge:hover { border-color: var(--primary-purple); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Service intro image */
.service-intro-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 300px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  margin-bottom: 40px;
}

/* ══════════════════════════════════
   CTA SECTION — Solid purple, no gradient
   ══════════════════════════════════ */
.cta-section {
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
  background-image: url('../images/cta-bg.webp');
  background-size: cover;
  background-position: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,14,42,0.92), rgba(82,63,141,0.85));
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: #FFFFFF; margin-bottom: 28px; letter-spacing: -0.03em; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn { background: var(--primary-orange); color: #FFFFFF; font-weight: 700; }
.cta-section .btn:hover { background: var(--primary-orange-hover); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer { background: var(--footer-bg); color: #FFFFFF; padding: 80px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); font-size: 1rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary-purple); color: #FFFFFF; }

.footer-col h4 {
  font-size: 1.05rem; font-weight: 700; color: #FFFFFF;
  margin-bottom: 24px; position: relative; padding-bottom: 14px;
  letter-spacing: -0.01em;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 3px; background: var(--primary-orange);
}
[dir="rtl"] .footer-col h4::after { left: auto; right: 0; }

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--primary-orange); padding-left: 4px; }
[dir="rtl"] .footer-col ul li a:hover { padding-left: 0; padding-right: 4px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--primary-orange); margin-top: 4px; width: 16px; }
.footer-contact-item span { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.5; }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom a { color: var(--primary-orange); font-weight: 600; }

@media (max-width: 992px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ══════════════════════════════════
   REFERENCES PAGE
   ══════════════════════════════════ */
.ref-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.ref-tab {
  padding: 12px 28px; border-radius: var(--radius-xl); font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted); background: var(--surface); border: 1px solid var(--border-light);
  cursor: pointer; transition: all var(--transition);
}
.ref-tab.active, .ref-tab:hover { background: var(--primary-purple); color: #FFFFFF; border-color: var(--primary-purple); }

.ref-category { display: none; }
.ref-category.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.ref-clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.ref-client-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: all var(--transition);
}
.ref-client-card:hover { border-color: var(--primary-purple); transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
.ref-client-card .client-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(82, 63, 141, 0.08); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem; color: var(--primary-purple);
}
.ref-client-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-heading); }
.ref-client-card p { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ══════════════════════════════════
   PARTNERS GRID
   ══════════════════════════════════ */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.partner-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; aspect-ratio: 2/1;
}
.partner-card:hover { border-color: #523F8D; transform: translateY(-4px); box-shadow: 0 12px 30px rgba(82,63,141,0.15); }
.partner-card img {
  max-width: 140px; max-height: 60px; width: auto; height: auto;
  object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: all 0.3s;
}
.partner-card:hover img { filter: grayscale(0%); opacity: 1; }
[data-theme="dark"] .partner-card img { filter: grayscale(100%) brightness(2); opacity: 0.6; }
[data-theme="dark"] .partner-card:hover img { filter: grayscale(0%) brightness(1.2); opacity: 1; }

@media (max-width: 992px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

/* ══════════════════════════════════
   CLIENT LOGOS GRID
   ══════════════════════════════════ */
.clients-logos-grid {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; align-items: center; padding: 40px 0;
}
.client-logo-card {
  padding: 20px 32px; background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.client-logo-card:hover { border-color: #D86E27; transform: translateY(-3px); }
.client-logo-card img {
  max-width: 120px; max-height: 50px; object-fit: contain;
  filter: grayscale(100%); opacity: 0.65; transition: all 0.3s;
}
.client-logo-card:hover img { filter: grayscale(0%); opacity: 1; }
[data-theme="dark"] .client-logo-card img { filter: grayscale(100%) brightness(2); opacity: 0.5; }
[data-theme="dark"] .client-logo-card:hover img { filter: grayscale(0%) brightness(1.2); opacity: 1; }

/* ══════════════════════════════════
   LOGOS TICKER
   ══════════════════════════════════ */
.logos-ticker-section {
  padding: 40px 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.logos-ticker-section .section-header { max-width: 1400px; margin: 0 auto; padding: 0 40px 20px; }
.section-tag {
  display: inline-block; padding: 6px 16px;
  background: rgba(216,110,39,0.12); color: #D86E27; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 12px;
}
.logos-ticker {
  overflow: hidden; width: 100%; position: relative;
}
.logos-ticker::before,
.logos-ticker::after {
  content: ''; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2;
}
.logos-ticker::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logos-ticker::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.ticker-track {
  display: flex; align-items: center; gap: 60px;
  animation: ticker 30s linear infinite; width: max-content;
}
.ticker-track img {
  height: 40px; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: 0.5; transition: all 0.3s; flex-shrink: 0;
}
.ticker-track img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }
[data-theme="dark"] .ticker-track img { filter: grayscale(100%) brightness(2); opacity: 0.4; }
[data-theme="dark"] .ticker-track img:hover { filter: grayscale(0%) brightness(1.2); opacity: 1; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-ticker:hover .ticker-track { animation-play-state: paused; }

/* ══════════════════════════════════
   BLOG / NEWS
   ══════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--card-hover-shadow); border-color: var(--border); }

.blog-card-image {
  height: 200px; background: var(--surface);
  display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
}
.blog-card-image .placeholder-icon { font-size: 3rem; color: var(--text-muted); opacity: 0.3; }
.blog-card-category {
  position: absolute; top: 16px; left: 16px; padding: 6px 14px;
  border-radius: var(--radius-xl); background: var(--primary-purple);
  color: #FFFFFF; font-size: 0.75rem; font-weight: 600;
}
[dir="rtl"] .blog-card-category { left: auto; right: 16px; }

.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; line-height: 1.4; letter-spacing: -0.01em; }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.blog-card .card-link { font-size: 0.875rem; font-weight: 600; color: var(--primary-orange); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.blog-card:hover .card-link { gap: 10px; }

@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }

.contact-info-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-item .info-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(82, 63, 141, 0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary-purple); flex-shrink: 0;
}
:root[data-theme="dark"] .contact-info-item .info-icon { color: #B8A9E0; }
.contact-info-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.9rem; color: var(--text-muted); }
.contact-info-item a:hover { color: var(--primary-purple); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; border: 1px solid var(--border-light); }
.contact-map iframe { width: 100%; height: 250px; border: none; }

.contact-social { display: flex; gap: 10px; margin-top: 24px; }
.contact-social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); color: var(--text-muted); font-size: 1.1rem;
  transition: all var(--transition); border: 1px solid var(--border-light);
}
.contact-social a:hover { background: var(--primary-purple); color: #FFFFFF; border-color: var(--primary-purple); }

.contact-form-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-heading); margin-bottom: 28px; letter-spacing: -0.02em; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; background: var(--input-bg);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  color: var(--text); font-size: 0.9rem; transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-purple); box-shadow: 0 0 0 3px rgba(82, 63, 141, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
[dir="rtl"] .form-group select { background-position: left 16px center; padding-right: 18px; padding-left: 40px; }

.form-message { display: none; padding: 14px 20px; border-radius: var(--radius-md); font-size: 0.9rem; font-weight: 500; margin-top: 16px; }
.form-message.success { display: block; background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }
.form-message.error { display: block; background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }

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

/* ══════════════════════════════════
   SERVICE PAGE TEMPLATE
   ══════════════════════════════════ */
.service-content { max-width: 800px; }
.service-content p { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 40px 0; }
.feature-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 28px; background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-item:hover { border-color: var(--primary-purple); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-item .feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(82, 63, 141, 0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary-purple); flex-shrink: 0;
}
:root[data-theme="dark"] .feature-item .feature-icon { color: #B8A9E0; }
.feature-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.feature-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0; }

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

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   PRESENTATION PAGE
   ══════════════════════════════════ */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-image-placeholder {
  background: var(--surface); border-radius: var(--radius-lg); height: 400px;
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  color: var(--text-muted); opacity: 0.3; border: 1px solid var(--border-light); overflow: hidden;
}
.about-image-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.about-text h3 { font-size: 1.6rem; font-weight: 800; color: var(--text-heading); margin-bottom: 20px; letter-spacing: -0.02em; }
.about-text p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }

@media (max-width: 768px) { .about-content { grid-template-columns: 1fr; } }

.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vision-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 40px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vision-card:hover { border-color: var(--primary-purple); transform: translateY(-6px); box-shadow: var(--card-hover-shadow); }
.vision-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.vision-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 576px) { .vision-grid { grid-template-columns: 1fr; } }

.engagements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.engagement-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); transition: all var(--transition);
}
.engagement-item:hover { border-color: var(--primary-purple); }
.engagement-item .eng-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(82, 63, 141, 0.08); display: flex; align-items: center; justify-content: center;
  color: var(--primary-orange); font-size: 1rem; flex-shrink: 0;
}
.engagement-item p { font-size: 0.9rem; color: var(--text); line-height: 1.5; font-weight: 500; }

/* Timeline (VINCI style) */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 2px;
  background: linear-gradient(to bottom, transparent, #523F8D 10%, #D86E27 90%, transparent);
}
.timeline-item { display: flex; align-items: center; margin-bottom: 40px; position: relative; }
.timeline-item.tl-left {
  flex-direction: row; justify-content: flex-end;
  padding-right: calc(50% + 40px); text-align: right;
}
.timeline-item.tl-right {
  flex-direction: row; justify-content: flex-start;
  padding-left: calc(50% + 40px);
}
.tl-dot {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; background: #523F8D;
  border: 3px solid var(--bg); border-radius: 50%;
  z-index: 2; transition: all 0.3s;
}
.tl-dot-active {
  background: #D86E27; width: 22px; height: 22px;
  box-shadow: 0 0 0 6px rgba(216,110,39,0.2);
}
.tl-content {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 24px; max-width: 340px;
  transition: all 0.3s;
}
.tl-content:hover {
  border-color: #D86E27; transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(82,63,141,0.12);
}
.tl-year {
  display: inline-block; font-size: 12px; font-weight: 800; color: #D86E27;
  background: rgba(216,110,39,0.1); padding: 3px 12px; border-radius: 20px;
  margin-bottom: 10px; letter-spacing: 1px;
}
.tl-content h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.tl-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-item.tl-left,
  .timeline-item.tl-right {
    padding-left: 60px; padding-right: 0;
    flex-direction: row; justify-content: flex-start; text-align: left;
  }
  .tl-dot { left: 20px; }
  .tl-content { max-width: 100%; }
}

/* Equipment */
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.equipment-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: var(--card); border: 1px solid var(--border-light); border-radius: var(--radius-md);
}
.equipment-item .eq-count {
  font-size: 1.4rem; font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.equipment-item span { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* ══════════════════════════════════
   UTILITIES & ANIMATIONS
   ══════════════════════════════════ */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal > *:nth-child(1) { transition-delay: 0.1s; }
.reveal > *:nth-child(2) { transition-delay: 0.2s; }
.reveal > *:nth-child(3) { transition-delay: 0.3s; }
.reveal > *:nth-child(4) { transition-delay: 0.4s; }
.reveal > *:nth-child(5) { transition-delay: 0.5s; }
.reveal > *:nth-child(6) { transition-delay: 0.6s; }

/* Page Fade In */
.page-transition { animation: pageIn 0.4s ease forwards; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
  border-radius: 50%; background: var(--primary-orange); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  z-index: 999; opacity: 0; visibility: hidden; transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(216, 110, 39, 0.3);
}
[dir="rtl"] .back-to-top { right: auto; left: 30px; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 30px rgba(216, 110, 39, 0.5); }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* Smooth theme transitions */
body, .navbar, .card, .service-card, .cert-card, .partner-card, .blog-card,
.contact-info-card, .contact-form-card, .feature-item, .why-item,
.qualification-item, .engagement-item, .tl-content, .vision-card,
.ref-client-card, .equipment-item, .logo-badge, .cert-badge, .kpi-card {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Selection color */
::selection { background: rgba(82, 63, 141, 0.2); color: var(--text); }

/* Focus-visible outlines for a11y */
:focus-visible { outline: 2px solid var(--primary-purple); outline-offset: 2px; }

/* Smooth image loading */
img { opacity: 1; transition: opacity 0.4s ease; }
img[src=""] { opacity: 0; }

/* ══════════════════════════════════
   PROCESS STEPS (Notre Approche)
   ══════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step {
  text-align: center; padding: 40px 24px; background: var(--card);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--card-hover-shadow); border-color: var(--primary-purple); }
.process-step-number {
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary-purple);
  color: #fff; font-size: 1.2rem; font-weight: 800; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.process-step-icon { font-size: 2rem; margin-bottom: 16px; }
.process-step h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 992px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .process-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   FULL-WIDTH STATS BANNER
   ══════════════════════════════════ */
.stats-banner {
  background: linear-gradient(135deg, #1a0e2a 0%, #2d1b4e 60%, #1a0e2a 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.stats-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23523f8d' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-banner .container { position: relative; z-index: 1; }
.stats-banner-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; text-align: center;
}
.stats-banner-item .sbi-number {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: #D86E27; line-height: 1; margin-bottom: 8px;
}
.stats-banner-item .sbi-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }
@media (max-width: 768px) { .stats-banner-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (max-width: 480px) { .stats-banner-grid { grid-template-columns: repeat(2, 1fr); } }

/* ══════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--card-hover-shadow); border-color: var(--primary-purple); }
.testimonial-card .quote-icon {
  font-size: 2rem; color: var(--primary-orange); opacity: 0.3; margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 0.95rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 20px;
}
.testimonial-card .tc-author { font-size: 0.85rem; font-weight: 600; color: var(--primary-purple); }
.testimonial-card .tc-role { font-size: 0.8rem; color: var(--text-muted); }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   NEWS PREVIEW (homepage)
   ══════════════════════════════════ */
.featured-article {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.4s ease;
}
.featured-article:hover { box-shadow: var(--card-hover-shadow); }
.featured-article-body { padding: 40px; }
.featured-article-body .fa-tag {
  display: inline-block; padding: 6px 14px; background: rgba(82,63,141,0.1);
  color: var(--primary-purple); border-radius: var(--radius-xl); font-size: 0.75rem;
  font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}
.featured-article-body h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-heading); margin-bottom: 16px; line-height: 1.35; }
.featured-article-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
@media (max-width: 768px) { .featured-article { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════ */
.newsletter-section { background: var(--surface); padding: 60px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-inner h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-heading); margin-bottom: 12px; }
.newsletter-inner p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; background: var(--input-bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); color: var(--text); font-size: 0.9rem;
}
.newsletter-form input:focus { border-color: var(--primary-purple); }
.newsletter-form button { white-space: nowrap; }
@media (max-width: 576px) { .newsletter-form { flex-direction: column; } }

/* ══════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--primary-purple); }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-weight: 600; font-size: 1rem; color: var(--text);
  transition: background 0.3s; background: var(--card);
}
.faq-question:hover { background: var(--surface); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px; color: var(--text-muted); line-height: 1.7; background: var(--card);
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-icon { color: var(--primary-orange); transition: transform 0.3s; font-size: 1rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ══════════════════════════════════
   JOB CARDS (Carrières)
   ══════════════════════════════════ */
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.job-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.job-card:hover { border-color: var(--primary-purple); transform: translateY(-6px); box-shadow: var(--card-hover-shadow); }
.job-tag {
  display: inline-block; padding: 4px 14px; background: rgba(82,63,141,0.12);
  color: var(--primary-purple); border-radius: var(--radius-xl); font-size: 0.75rem;
  font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
:root[data-theme="dark"] .job-tag { color: #B8A9E0; }
.job-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.job-location {
  color: var(--text-muted); font-size: 0.85rem; display: flex; align-items: center;
  gap: 6px; margin-bottom: 6px;
}
.job-location i { color: var(--primary-orange); font-size: 0.8rem; }
.job-type { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.job-type i { color: var(--primary-orange); font-size: 0.8rem; }
.job-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
@media (max-width: 992px) { .jobs-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content .legal-updated { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 40px; font-style: italic; }
.legal-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--text-heading); margin: 40px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border-light); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.legal-content a { color: var(--primary-purple); font-weight: 600; }
.legal-content a:hover { color: var(--primary-orange); }
.legal-info-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 32px;
}
.legal-info-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 16px; }
.legal-info-card p { margin-bottom: 8px; }

/* ══════════════════════════════════
   IMAGE PLACEHOLDERS
   ══════════════════════════════════ */

/* ══════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 24px; width: 52px; height: 52px;
  background: #25D366; color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999; transition: transform 0.3s, box-shadow 0.3s;
}
[dir="rtl"] .whatsapp-float { right: auto; left: 24px; }
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px); color: white;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ══════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--card); border-top: 1px solid var(--border);
  padding: 20px 24px; display: flex; align-items: center; justify-content: center;
  gap: 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.cookie-banner p a { color: var(--primary-purple); font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-accept {
  padding: 10px 24px; background: var(--primary-orange); color: #fff;
  border-radius: var(--radius-xl); font-size: 0.85rem; font-weight: 600;
  transition: all var(--transition);
}
.btn-accept:hover { background: var(--primary-orange-hover); }
.btn-decline {
  padding: 10px 24px; background: var(--surface); color: var(--text-muted);
  border-radius: var(--radius-xl); font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--border); transition: all var(--transition);
}
.btn-decline:hover { border-color: var(--text-muted); color: var(--text); }
@media (max-width: 576px) {
  .cookie-banner { flex-direction: column; text-align: center; gap: 16px; }
}

/* ══════════════════════════════════
   CONTACT CARDS TOP ROW
   ══════════════════════════════════ */
.contact-top-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.contact-top-card {
  text-align: center; padding: 32px 24px; background: var(--card);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-top-card:hover { transform: translateY(-6px); box-shadow: var(--card-hover-shadow); border-color: var(--primary-purple); }
.contact-top-card .ctc-icon {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(82,63,141,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary-purple);
}
:root[data-theme="dark"] .contact-top-card .ctc-icon { color: #B8A9E0; }
.contact-top-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.contact-top-card p, .contact-top-card a { font-size: 0.9rem; color: var(--text-muted); }
.contact-top-card a:hover { color: var(--primary-purple); }
@media (max-width: 576px) { .contact-top-cards { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   HOURS & AGENCIES
   ══════════════════════════════════ */
.hours-social { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.hours-card, .agencies-card {
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
}
.hours-card h4, .agencies-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 16px; }
.hours-card .hour-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.hours-card .hour-row:last-child { border-bottom: none; }
.hours-card .hour-day { color: var(--text); font-weight: 500; }
.hours-card .hour-time { color: var(--text-muted); }
.agency-item { margin-bottom: 16px; }
.agency-item h5 { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.agency-item p { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 768px) { .hours-social { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   CAPITAL HUMAIN GRID
   ══════════════════════════════════ */
.team-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.team-stat-item {
  display: flex; align-items: center; gap: 14px; padding: 20px;
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); transition: all var(--transition);
}
.team-stat-item:hover { border-color: var(--primary-purple); }
.team-stat-item .tsi-count {
  font-size: 1.6rem; font-weight: 800; color: var(--primary-orange); min-width: 40px;
}
.team-stat-item .tsi-role { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* ══════════════════════════════════
   TECHNICAL SPECS TABLE
   ══════════════════════════════════ */
.specs-list { max-width: 700px; }
.spec-item {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); margin-bottom: 10px; transition: all var(--transition);
}
.spec-item:hover { border-color: var(--primary-purple); }
.spec-item i { color: var(--primary-orange); font-size: 1rem; width: 20px; text-align: center; }
.spec-item span { font-size: 0.95rem; color: var(--text); font-weight: 500; }

/* ══════════════════════════════════
   SECTORS GRID
   ══════════════════════════════════ */
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.sector-item {
  text-align: center; padding: 28px 20px; background: var(--card);
  border: 1px solid var(--border-light); border-radius: var(--radius-md);
  transition: all var(--transition);
}
.sector-item:hover { border-color: var(--primary-purple); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sector-item i { font-size: 1.5rem; color: var(--primary-purple); margin-bottom: 12px; }
:root[data-theme="dark"] .sector-item i { color: #B8A9E0; }
.sector-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-heading); }

/* ══════════════════════════════════
   SPLIT INTRO LAYOUT
   ══════════════════════════════════ */
.split-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.split-intro-text p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }
.key-points { list-style: none; padding: 0; }
.key-points li {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border-light); font-size: 0.95rem; color: var(--text); font-weight: 500;
}
.key-points li:last-child { border-bottom: none; }
.key-points li i { color: var(--primary-orange); margin-top: 3px; }
@media (max-width: 768px) { .split-intro { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   DELIVERABLES LIST
   ══════════════════════════════════ */
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.deliverable-item {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  background: var(--card); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); transition: all var(--transition);
}
.deliverable-item:hover { border-color: var(--primary-purple); }
.deliverable-item i { color: var(--primary-orange); }
.deliverable-item span { font-size: 0.9rem; color: var(--text); font-weight: 500; }
@media (max-width: 576px) { .deliverables-grid { grid-template-columns: 1fr; } }

/* Footer legal row */
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; padding-top: 16px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: color 0.3s; }
.footer-legal a:hover { color: var(--primary-orange); }
.footer-legal .flsep { color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════
   IMAGE PLACEHOLDER
   ══════════════════════════════════ */
.img-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  background: linear-gradient(135deg, #eeeef5 0%, #ddddef 100%);
  border-radius: 16px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  border: 2px dashed rgba(82,63,141,0.25);
  position: relative; overflow: hidden; transition: all 0.3s;
}
.img-placeholder::after {
  content: attr(data-label); position: absolute; bottom: 12px;
  font-size: 10px; font-weight: 600;
  color: rgba(82,63,141,0.5); text-transform: uppercase;
  letter-spacing: 0.8px; text-align: center; padding: 0 16px;
}
.img-placeholder i { font-size: 2.8rem; color: rgba(82,63,141,0.3); }
[data-theme="dark"] .img-placeholder {
  background: linear-gradient(135deg, #161626 0%, #1e1235 100%);
  border-color: rgba(216,110,39,0.15);
}
[data-theme="dark"] .img-placeholder i { color: rgba(216,110,39,0.25); }
[data-theme="dark"] .img-placeholder::after { color: rgba(216,110,39,0.4); }

/* ══════════════════════════════════
   STEPS GRID (Notre Approche)
   ══════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px; position: relative;
  transition: all 0.3s; overflow: hidden;
}
.step-card:hover {
  border-color: #D86E27; transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(82,63,141,0.12);
}
.step-number {
  font-size: 4rem; font-weight: 900; color: rgba(82,63,141,0.08);
  position: absolute; top: 12px; right: 16px; line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.step-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(82,63,141,0.15), rgba(216,110,39,0.15));
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.step-icon i { font-size: 1.4rem; color: #D86E27; }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.step-img { height: 140px; }
.step-img .img-placeholder { min-height: 140px; }
@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px; transition: all 0.3s; position: relative;
}
.testimonial-card:hover {
  border-color: #523F8D; transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(82,63,141,0.12);
}
.testimonial-quote { font-size: 2rem; color: #D86E27; opacity: 0.4; margin-bottom: 16px; line-height: 1; }
.testimonial-card > p {
  font-size: 0.95rem; line-height: 1.7; color: var(--text);
  font-style: italic; margin-bottom: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #523F8D, #D86E27);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; flex-shrink: 0;
}
.testimonial-author > div strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.testimonial-author > div span { font-size: 12px; color: var(--text-muted); }
.testimonial-logo {
  margin-left: auto; height: 28px; width: auto;
  object-fit: contain; filter: grayscale(100%); opacity: 0.5;
}
@media (max-width: 1024px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   ABOUT SPLIT (presentation.html)
   ══════════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 60px;
}
.about-split-img { height: 400px; }
.about-split-img .img-placeholder { min-height: 400px; border-radius: 24px; }
.about-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.about-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: rgba(82,63,141,0.1);
  border: 1px solid rgba(82,63,141,0.2); border-radius: 50px;
  font-size: 13px; font-weight: 600; color: #523F8D;
}
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   SERVICE SPLIT (service pages)
   ══════════════════════════════════ */
.service-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 60px;
}
.service-split-img { position: relative; height: 380px; }
.service-split-img .img-placeholder { min-height: 380px; }
.service-intro { font-size: 1rem; line-height: 1.8; color: var(--text-muted); }
.service-highlights {
  list-style: none; padding: 0; margin: 20px 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.service-highlights li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--text);
}
.service-highlights li i { color: #D86E27; font-size: 1rem; flex-shrink: 0; }
.service-float-badge {
  position: absolute; bottom: -16px; right: 24px;
  background: linear-gradient(135deg, #523F8D, #D86E27);
  color: white; padding: 16px 20px; border-radius: 16px;
  text-align: center; box-shadow: 0 8px 30px rgba(82,63,141,0.4);
}
.service-float-badge strong { display: block; font-size: 1.4rem; font-weight: 900; line-height: 1; }
.service-float-badge span { font-size: 11px; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 768px) {
  .service-split { grid-template-columns: 1fr; }
  .service-float-badge { display: none; }
}

/* ══════════════════════════════════
   PROJECT CARDS (references.html)
   ══════════════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; transition: all 0.3s;
}
.project-card:hover {
  border-color: #523F8D; transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(82,63,141,0.15);
}
.project-img { position: relative; height: 200px; }
.project-img .img-placeholder { min-height: 200px; border-radius: 0; border: none; }
.project-tag {
  position: absolute; top: 16px; left: 16px; background: #D86E27;
  color: white; padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.project-info { padding: 20px; }
.project-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.project-info p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 14px; }
.project-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); }
.project-meta span { display: flex; align-items: center; gap: 5px; }
.project-meta i { color: #523F8D; font-size: 11px; }
@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   EXPERTISE PAGE — Intro & Cards
   ══════════════════════════════════ */
.expertise-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
.expertise-intro-text h2 { margin-bottom: 16px; }
.expertise-intro-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.expertise-intro-stats {
  display: flex; gap: 28px; margin-top: 28px;
}
.ei-stat { text-align: center; }
.ei-stat strong { display: block; font-size: 1.3rem; font-weight: 900; color: #D86E27; }
.ei-stat span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 768px) {
  .expertise-intro-grid { grid-template-columns: 1fr; }
  .expertise-intro-stats { justify-content: center; }
}

.expertise-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.expertise-card-full {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; text-decoration: none;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.expertise-card-full:hover {
  border-color: #D86E27; transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(82,63,141,0.15);
}
.ecf-image { position: relative; height: 200px; overflow: hidden; }
.ecf-image .img-placeholder {
  min-height: 200px; border-radius: 0; border: none; transition: transform 0.4s;
}
.expertise-card-full:hover .ecf-image .img-placeholder { transform: scale(1.05); }
.ecf-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(26,14,42,0.85); color: #D86E27;
  border: 1px solid rgba(216,110,39,0.3);
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; backdrop-filter: blur(8px);
}
.ecf-body {
  padding: 24px; flex: 1; display: flex; flex-direction: column;
}
.ecf-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(82,63,141,0.15), rgba(216,110,39,0.1));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ecf-icon i { font-size: 1.2rem; color: #523F8D; }
.expertise-card-full:hover .ecf-icon i { color: #D86E27; }
.ecf-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.ecf-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.ecf-list { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.ecf-list li {
  font-size: 0.82rem; color: var(--text-muted); padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.ecf-list li::before {
  content: ''; width: 6px; height: 6px; background: #D86E27;
  border-radius: 50%; flex-shrink: 0;
}
.ecf-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #523F8D;
  margin-top: auto; transition: gap 0.3s, color 0.3s;
}
.expertise-card-full:hover .ecf-link { color: #D86E27; gap: 12px; }
@media (max-width: 1024px) { .expertise-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .expertise-cards-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   CERT STRIP (expertise.html)
   ══════════════════════════════════ */
.cert-strip-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cert-strip-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cert-badge-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 20px; text-align: center; transition: all 0.3s;
}
.cert-badge-item:hover { border-color: #D86E27; transform: translateY(-4px); }
.cert-badge-circle {
  width: 56px; height: 56px; background: rgba(82,63,141,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.cert-badge-circle.green { background: rgba(16,185,129,0.12); }
.cert-badge-circle.green i { color: #10b981; }
.cert-badge-circle.orange { background: rgba(216,110,39,0.12); }
.cert-badge-circle.orange i { color: #D86E27; }
.cert-badge-circle.purple i { color: #523F8D; }
.cert-badge-circle i { font-size: 1.4rem; color: #523F8D; }
.cert-badge-item span { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cert-badge-item small { font-size: 11px; color: var(--text-muted); }
@media (max-width: 768px) { .cert-strip-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   EQUIPMENT GRID (service pages)
   ══════════════════════════════════ */
.equip-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px;
}
.equip-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--card);
  border: 1px solid var(--border); border-radius: 14px; transition: all 0.3s;
}
.equip-card:hover { border-color: #523F8D; transform: translateX(4px); }
.equip-card > i { font-size: 1.4rem; color: #D86E27; width: 36px; flex-shrink: 0; }
.equip-card strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.equip-card span { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════
   PROCESS STEPS (service pages)
   ══════════════════════════════════ */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin-top: 40px;
}
.process-steps::before {
  content: ''; position: absolute; top: 40px;
  left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(to right, #523F8D, #D86E27); z-index: 0;
}
.process-step-v2 {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px; position: relative; z-index: 1;
}
.process-step-num {
  width: 80px; height: 80px; background: var(--card);
  border: 3px solid #523F8D; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; transition: all 0.3s;
}
.process-step-v2:hover .process-step-num {
  background: linear-gradient(135deg, #523F8D, #D86E27); border-color: transparent;
}
.process-step-num i { font-size: 1.4rem; color: #523F8D; transition: color 0.3s; }
.process-step-v2:hover .process-step-num i { color: white; }
.process-step-v2 h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-step-v2 p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════
   MINI PROJECTS GALLERY (service pages)
   ══════════════════════════════════ */
.mini-projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.mini-project-card {
  border-radius: 16px; overflow: hidden; background: var(--card);
  border: 1px solid var(--border); transition: all 0.3s;
}
.mini-project-card:hover {
  transform: translateY(-6px); box-shadow: 0 16px 40px rgba(82,63,141,0.15);
  border-color: #D86E27;
}
.mpc-img { position: relative; height: 180px; }
.mpc-img .img-placeholder { min-height: 180px; border-radius: 0; border: none; }
.mpc-tag {
  position: absolute; top: 12px; left: 12px;
  background: #D86E27; color: white; padding: 3px 10px;
  border-radius: 20px; font-size: 10px; font-weight: 700; text-transform: uppercase;
}
.mpc-body { padding: 16px; }
.mpc-body h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.mpc-body p { font-size: 12px; color: var(--text-muted); }
.mpc-meta {
  display: flex; gap: 12px; margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border); font-size: 11px; color: var(--text-muted);
}
.mpc-meta span { display: flex; align-items: center; gap: 4px; }
.mpc-meta i { color: #523F8D; font-size: 10px; }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .mini-projects-grid { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════ */
.newsletter-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0e2a 0%, #2d1b4e 50%, #1a0e2a 100%);
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(216,110,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.newsletter-text .section-tag {
  background: rgba(216,110,39,0.15); color: #D86E27;
  border-color: rgba(216,110,39,0.3);
}
.newsletter-text h2 { color: white; font-size: 2rem; margin: 16px 0; }
.newsletter-text p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.newsletter-benefits { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.newsletter-benefits li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 14px; }
.newsletter-benefits li i { color: #D86E27; font-size: 1rem; }
.newsletter-form-wrap {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 40px; backdrop-filter: blur(10px);
}
.newsletter-form { display: flex; flex-direction: column; gap: 20px; }
.nf-group { display: flex; flex-direction: column; gap: 8px; }
.nf-group label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.nf-group input, .nf-group select {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 14px 18px; color: white; font-size: 14px;
  transition: all 0.3s; font-family: inherit;
}
.nf-group input::placeholder { color: rgba(255,255,255,0.3); }
.nf-group input:focus, .nf-group select:focus {
  outline: none; border-color: #D86E27;
  background: rgba(216,110,39,0.1); box-shadow: 0 0 0 3px rgba(216,110,39,0.15);
}
.nf-group select option { background: #1a0e2a; color: white; }
.nf-consent { display: flex; gap: 12px; align-items: flex-start; }
.nf-consent input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; accent-color: #D86E27; flex-shrink: 0; }
.nf-consent label { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 15px; gap: 10px; }
.nf-privacy { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; margin: 0; }
.nf-privacy a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.nf-success { text-align: center; padding: 60px 20px; }
.nf-success i { font-size: 4rem; color: #D86E27; margin-bottom: 20px; display: block; }
.nf-success h3 { color: white; font-size: 1.4rem; margin-bottom: 12px; }
.nf-success p { color: rgba(255,255,255,0.7); }
@media (max-width: 1024px) { .newsletter-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ══════════════════════════════════
   PROJECT DETAIL PAGES
   ══════════════════════════════════ */
.project-hero { padding: 60px 0 80px; background: var(--surface); }
.project-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.project-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.project-breadcrumb a:hover { color: #D86E27; }
.project-breadcrumb .current { color: var(--text); font-weight: 600; }
.project-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.project-meta-top { display: flex; gap: 10px; margin-bottom: 16px; }
.project-service-tag { background: rgba(82,63,141,0.15); color: #523F8D; border: 1px solid rgba(82,63,141,0.3); padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.project-year-tag { background: rgba(216,110,39,0.1); color: #D86E27; border: 1px solid rgba(216,110,39,0.2); padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.project-hero-text h1 { font-size: 2.2rem; font-weight: 900; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.project-subtitle { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.project-quick-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.pqf-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
.pqf-item > i { font-size: 1.1rem; color: #D86E27; }
.pqf-item div { display: flex; flex-direction: column; }
.pqf-item span { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.pqf-item strong { font-size: 13px; font-weight: 700; color: var(--text); }
.project-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.project-hero-img { position: relative; }
.project-hero-img .img-placeholder { min-height: 420px; border-radius: 24px; }
.project-hero-badge { position: absolute; bottom: 20px; right: 20px; background: rgba(16,185,129,0.9); color: white; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px; backdrop-filter: blur(8px); }
.project-details { padding: 80px 0; }
.project-details-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.project-block { margin-bottom: 50px; }
.project-block h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--border); position: relative; }
.project-block h2::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 50px; height: 2px; background: #D86E27; }
.project-block p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.project-list { padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.project-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); line-height: 1.6; padding: 12px 16px; background: var(--card); border: 1px solid var(--border); border-left: 3px solid #D86E27; border-radius: 10px; }
.project-list li::before { content: '\2192'; color: #D86E27; font-weight: 700; flex-shrink: 0; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 12px; margin-top: 20px; }
.gallery-main { grid-row: 1 / 3; }
.gallery-item .img-placeholder { min-height: unset; height: 100%; border-radius: 12px; border: none; }
.project-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.pr-item { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; text-align: center; transition: all 0.3s; }
.pr-item:hover { border-color: #D86E27; transform: translateY(-4px); }
.pr-item strong { display: block; font-size: 2rem; font-weight: 900; color: #D86E27; margin-bottom: 8px; }
.pr-item span { font-size: 13px; color: var(--text-muted); }
.sidebar-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; margin-bottom: 24px; }
.sidebar-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sidebar-specs { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sidebar-specs li { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.sidebar-specs li span { color: var(--text-muted); }
.sidebar-specs li strong { font-weight: 600; color: var(--text); text-align: right; }
.status-done { color: #10b981 !important; }
.sidebar-cta { background: linear-gradient(135deg, #1a0e2a, #2d1b4e); border-color: rgba(216,110,39,0.2); text-align: center; }
.sidebar-cta > i { font-size: 2.5rem; color: #D86E27; margin-bottom: 12px; display: block; }
.sidebar-cta h3 { color: white; border-color: rgba(255,255,255,0.1); }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.sidebar-services { display: flex; flex-direction: column; gap: 10px; }
.ss-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: var(--text); font-size: 13px; font-weight: 600; transition: all 0.3s; }
.ss-item:hover { border-color: #D86E27; color: #D86E27; }
.ss-item > i:first-child { color: #523F8D; width: 20px; }
.ss-arrow { margin-left: auto; font-size: 10px; color: var(--text-muted); }
@media (max-width: 1024px) {
  .project-hero-grid, .project-details-grid { grid-template-columns: 1fr; }
  .project-results { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   ARTICLE PAGES
   ══════════════════════════════════ */
.article-hero { padding: 60px 0 40px; background: var(--surface); }
.article-meta-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.article-category { background: rgba(82,63,141,0.15); color: #523F8D; border: 1px solid rgba(82,63,141,0.3); padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.article-date, .article-read-time { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.article-hero h1 { font-size: 2.2rem; font-weight: 900; color: var(--text); line-height: 1.3; margin-bottom: 16px; max-width: 800px; }
.article-hero .article-excerpt { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 700px; }
.article-tags-top { display: flex; gap: 8px; margin-top: 20px; }
.article-tag-item { background: rgba(216,110,39,0.1); color: #D86E27; padding: 4px 12px; border-radius: 16px; font-size: 11px; font-weight: 600; }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; padding: 60px 0; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin: 40px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); position: relative; }
.article-body h2::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: #D86E27; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.article-body p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.article-body ul { padding-left: 0; list-style: none; margin-bottom: 20px; }
.article-body ul li { padding: 8px 0 8px 24px; position: relative; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.article-body ul li::before { content: '\2713'; position: absolute; left: 0; color: #D86E27; font-weight: 700; }
.article-cta-inline { background: linear-gradient(135deg, #1a0e2a, #2d1b4e); border-radius: 20px; padding: 40px; margin: 40px 0; text-align: center; }
.article-cta-inline h3 { color: white; font-size: 1.3rem; margin-bottom: 12px; }
.article-cta-inline p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; }
.article-author { display: flex; align-items: center; gap: 16px; padding: 28px; background: var(--card); border: 1px solid var(--border); border-radius: 20px; margin-top: 40px; }
.article-author-avatar { width: 64px; height: 64px; background: linear-gradient(135deg, #523F8D, #D86E27); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.article-author-avatar i { font-size: 1.5rem; color: white; }
.article-author-info strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 4px; }
.article-author-info span { font-size: 13px; color: var(--text-muted); }
.article-sidebar { position: sticky; top: 100px; }
.article-toc { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; margin-bottom: 24px; }
.article-toc h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.article-toc ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.article-toc ul li a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.article-toc ul li a::before { content: ''; width: 6px; height: 6px; background: var(--border); border-radius: 50%; flex-shrink: 0; transition: background 0.2s; }
.article-toc ul li a:hover { color: #D86E27; }
.article-toc ul li a:hover::before { background: #D86E27; }
.article-share { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 28px; margin-bottom: 24px; }
.article-share h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.article-share-btns { display: flex; gap: 10px; }
.article-share-btns a { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; transition: transform 0.2s; }
.article-share-btns a:hover { transform: translateY(-3px); }
.share-linkedin { background: #0077B5; }
.share-facebook { background: #1877F2; }
.share-whatsapp { background: #25D366; }
.related-articles { padding: 80px 0; background: var(--surface); }

/* Article cards (actualites + blog) */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.article-card:hover { border-color: rgba(82,63,141,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(82,63,141,0.12); }
.ac-image { position: relative; height: 220px; overflow: hidden; }
.ac-image .img-placeholder { min-height: 220px; border-radius: 0; border: none; }
.ac-category { position: absolute; top: 14px; left: 14px; background: rgba(26,14,42,0.85); color: #D86E27; padding: 4px 12px; border-radius: 16px; font-size: 11px; font-weight: 700; backdrop-filter: blur(8px); }
.ac-body { padding: 24px; }
.ac-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.ac-date, .ac-read { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.ac-body h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.ac-body h2 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.ac-body h2 a:hover { color: #D86E27; }
.ac-body > p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.ac-footer { display: flex; justify-content: space-between; align-items: center; }
.ac-tags { display: flex; gap: 6px; }
.ac-tag { background: var(--surface); color: var(--text-muted); padding: 3px 10px; border-radius: 12px; font-size: 10px; font-weight: 600; }
.ac-read-more { font-size: 13px; font-weight: 600; color: #D86E27; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.ac-read-more:hover { gap: 10px; }
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .articles-grid { grid-template-columns: 1fr; }
}

/* Actualites newsletter CTA */
.actualites-newsletter { margin: 40px 0; }
.an-inner { display: flex; align-items: center; gap: 24px; padding: 28px 32px; background: linear-gradient(135deg, #1a0e2a, #2d1b4e); border-radius: 20px; }
.an-inner > i { font-size: 2rem; color: #D86E27; flex-shrink: 0; }
.an-inner h3 { color: white; font-size: 1rem; margin-bottom: 4px; }
.an-inner p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }
.an-inner .btn { margin-left: auto; flex-shrink: 0; }
@media (max-width: 768px) { .an-inner { flex-direction: column; text-align: center; } .an-inner .btn { margin-left: 0; } }
