:root {
  --bg:        #FFFFFF;
  --bg-alt:    #F3F6FA;
  --ink:       #0A1628;
  --on-teal:   #0A1628;
  --navy3:     #002A18;
  --text:      #24344A;
  --muted:     #4A5568;
  --muted-2:   #6B7C93;
  --teal:      #007A45;
  --teal-ink:  #00522F;
  --teal2:     #00643A;
  --teal3:     #2FA968;
  --gold:      #FCD116;
  --gold-ink:  #7A5D00;
  --card-bg:   rgba(10,22,40,0.025);
  --card-border: rgba(0,122,69,0.2);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,122,69,0.12);
  transition: background 0.5s var(--ease);
}
.logo-nav { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-hex { width: 56px; height: 56px; flex-shrink: 0; }
.logo-hex svg { width: 100%; height: 100%; }
.logo-text-nav { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--ink); letter-spacing: 2px; }
.logo-tag { font-size: 11px; color: var(--teal-ink); letter-spacing: 3px; font-weight: 600; }

.nav-links { display: flex; list-style: none; gap: 36px; align-items: center; }
.nav-links a,
.nav-dropdown-trigger {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.35s var(--ease);
  position: relative;
}
.nav-links a::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover, .nav-dropdown-trigger:hover { color: var(--teal-ink); }
.nav-links a:hover::after, .nav-dropdown-trigger:hover::after { transform: scaleX(1); }
.nav-links a.active, .nav-dropdown-trigger.active { color: var(--teal-ink); }
.nav-links a.active::after, .nav-dropdown-trigger.active::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  background: none; border: none; font-family: var(--font-body); cursor: pointer; padding: 0;
}
.nav-dropdown-trigger[aria-expanded="true"] { color: var(--teal-ink); }
.nav-dropdown-trigger[aria-expanded="true"]::after { transform: scaleX(1); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--bg); border: 1px solid var(--card-border); border-radius: 10px;
  padding: 8px; min-width: 190px; box-shadow: 0 16px 32px rgba(10,22,40,0.14);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 9px 12px; border-radius: 6px; font-size: 13px; color: var(--muted);
  text-decoration: none; white-space: nowrap; transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active { background: var(--card-bg); color: var(--teal-ink); }

/* ── BURGER MENU MOBILE ── */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 8px;
  flex-shrink: 0;
}
.mobile-nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── INFO-TIP (tooltip pédagogique) ── */
.info-tip {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; margin-left: 3px; font-size: 10px; line-height: 1;
  color: var(--muted-2); border: 1px solid var(--muted-2); border-radius: 50%;
  cursor: help; vertical-align: middle;
}
.info-tip::after {
  content: attr(data-tip);
  position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: #0A1628; color: #F5F8FB; font-size: 11px; font-weight: 400; line-height: 1.5;
  padding: 8px 10px; border-radius: 8px; width: 210px; text-align: left;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25); z-index: 50;
}
.info-tip:hover::after, .info-tip:focus::after { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.noc-card .info-tip { color: #8899AA; border-color: #8899AA; }
.btn-nav {
  background: var(--teal);
  color: var(--on-teal) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease) !important;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--teal3) !important; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--on-teal);
  padding: 14px 32px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.45s var(--ease), transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.btn-primary:hover { background: var(--teal3); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--teal-ink);
  padding: 13px 30px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.5px;
  text-decoration: none; border: 1.5px solid var(--teal2); cursor: pointer;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn-outline:hover { background: rgba(0,122,69,0.1); transform: translateY(-2px); }

/* ── HERO ── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 5% 80px; overflow: hidden; }
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.07; }
.orb1 { width: 600px; height: 600px; background: var(--teal); top: -100px; right: -100px; }
.orb2 { width: 400px; height: 400px; background: var(--gold); bottom: -50px; left: -80px; animation: float 8s ease-in-out infinite; }
.orb3 { width: 300px; height: 300px; background: var(--navy3); top: 30%; left: 30%; animation: float 12s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,122,69,0.12); border: 1px solid rgba(0,122,69,0.35); color: var(--teal-ink);
  padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  margin-bottom: 28px; animation: fadeInUp 0.6s ease both;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

h1 {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05; color: var(--ink); margin-bottom: 24px; animation: fadeInUp 0.6s 0.1s ease both;
}
h1 .accent { color: var(--teal-ink); }
h1 .accent-gold { color: var(--gold-ink); }

.hero-desc { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; max-width: 540px; animation: fadeInUp 0.6s 0.2s ease both; }

.hero-benefits { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 28px; animation: fadeInUp 0.6s 0.25s ease both; }
.hero-benefits span { font-size: 13px; color: var(--text); font-weight: 500; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s 0.3s ease both; }
.hero-cta-note { font-size: 12px; color: var(--muted-2); margin-top: 16px; animation: fadeInUp 0.6s 0.35s ease both; }

.hero-stats { display: flex; gap: 48px; margin-top: 56px; flex-wrap: wrap; animation: fadeInUp 0.6s 0.4s ease both; }
.hero-stat-val { font-family: var(--font-display); font-weight: 900; font-size: 36px; color: var(--teal-ink); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--muted-2); margin-top: 4px; letter-spacing: 0.5px; }

.hero-visual { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 2; width: min(480px, 45vw); animation: fadeInRight 0.8s 0.3s ease both; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translate(40px, -50%); } to { opacity: 1; transform: translate(0, -50%); } }

/* ── NOC VISUAL ── */
.noc-card { background: rgba(15,28,48,0.9); border: 1px solid rgba(0,122,69,0.25); border-radius: 16px; padding: 24px; backdrop-filter: blur(10px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.noc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.noc-title { font-family: var(--font-mono); font-size: 11px; color: var(--teal); letter-spacing: 2px; }
.noc-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--teal); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2s ease-in-out infinite; }
.noc-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.metric-box { background: rgba(0,122,69,0.06); border: 1px solid rgba(0,122,69,0.15); border-radius: 10px; padding: 14px; }
.metric-val { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--teal); }
.metric-label { font-size: 10px; color: #8899AA; margin-top: 2px; letter-spacing: 0.5px; }
.metric-good { color: #4ade80; }
.metric-warn { color: var(--gold); }
.noc-bars { display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: flex; align-items: center; gap: 10px; }
.bar-label { font-size: 10px; color: #8899AA; width: 80px; font-family: var(--font-mono); }
.bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 2px; background: var(--teal); }
.bar-fill.warn { background: var(--gold); }
.bar-pct { font-size: 10px; color: #8899AA; width: 32px; text-align: right; font-family: var(--font-mono); }
.noc-alerts { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.alert-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; font-size: 11px; font-family: var(--font-mono); }
.alert-ok { background: rgba(74,222,128,0.08); color: #4ade80; border: 1px solid rgba(74,222,128,0.18); }
.alert-warn { background: rgba(252,209,22,0.08); color: #F2CC0C; border: 1px solid rgba(252,209,22,0.25); }
.alert-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--card-bg); border-top: 1px solid rgba(0,122,69,0.12); border-bottom: 1px solid rgba(0,122,69,0.12); padding: 22px 0; position: relative; z-index: 1; }
.trust-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; }
.trust-icon { font-size: 16px; }
.trust-icon svg { width: 16px; height: 16px; stroke-width: 2.25; color: var(--teal-ink); vertical-align: -3px; }

/* ── ICÔNES LUCIDE ── */
[data-lucide] { display: block; }
.team-icon svg, .pillar-icon svg, .engagement-icon svg {
  width: 26px; height: 26px; stroke-width: 1.75; color: var(--teal-ink);
}
.teaser-icon svg { width: 26px; height: 26px; stroke-width: 1.75; color: var(--teal-ink); }
.contact-icon svg { width: 20px; height: 20px; stroke-width: 2; color: var(--teal-ink); }

/* ── PAGE INFOGÉRANCE : MUR D'ÉCRANS NOC ── */
.noc-wall { background: rgba(15,28,48,0.95); border: 1px solid rgba(0,122,69,0.25); border-radius: 20px; padding: 28px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); max-width: 900px; margin: 0 auto; }
.noc-wall-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; font-family: var(--font-mono); font-size: 11px; color: #60A5FA; letter-spacing: 1.5px; }
.noc-wall-header > span:first-child { display: flex; align-items: center; gap: 8px; }
.noc-wall-header svg { width: 14px; height: 14px; }
.noc-wall-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.noc-tile { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; transition: border-color 0.35s var(--ease), transform 0.35s var(--ease); }
.noc-tile:hover { transform: translateY(-3px); border-color: rgba(74,222,128,0.4); }
.noc-tile-head { display: flex; align-items: center; gap: 7px; font-size: 10.5px; color: #8899AA; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.noc-tile-head svg { width: 13px; height: 13px; color: #4ade80; flex-shrink: 0; }
.tile-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.6); flex-shrink: 0; }
.noc-tile.warn .tile-dot { background: #F2CC0C; box-shadow: 0 0 6px rgba(245,185,66,0.6); }
.noc-tile-val { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: #F5F8FB; }
.noc-tile-sub { font-size: 11px; color: #C9D6E4; margin-top: 2px; }

/* ── PAGE INFOGÉRANCE : DASHBOARD DE PILOTAGE ── */
.pilotage-panel { background: rgba(15,28,48,0.95); border: 1px solid rgba(0,122,69,0.25); border-radius: 20px; padding: 28px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); max-width: 900px; margin: 0 auto; }
.pilotage-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.pilotage-tag { font-family: var(--font-mono); font-size: 11px; color: #60A5FA; letter-spacing: 1.5px; }
.pilotage-sla { font-size: 12px; color: #C9D6E4; }
.pilotage-sla strong { color: #4ade80; }
.pilotage-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.pilotage-bars { display: flex; flex-direction: column; gap: 14px; }

/* ── PAGE INFOGÉRANCE : TICKETING GLPI ── */
.glpi-panel { background: var(--bg-alt); border: 1px solid var(--card-border); border-radius: 20px; padding: 28px; max-width: 900px; margin: 0 auto; }
.glpi-header { display: flex; align-items: center; margin-bottom: 18px; }
.glpi-tag { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--teal-ink); letter-spacing: 1.5px; }
.glpi-tag svg { width: 14px; height: 14px; }
.ticket-table { display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
.ticket-row { display: grid; grid-template-columns: 2.2fr 1fr 1fr 0.7fr; gap: 10px; align-items: center; padding: 12px 14px; background: var(--bg); font-size: 12.5px; color: var(--text); border-bottom: 1px solid rgba(10,22,40,0.06); border-radius: 8px; }
.ticket-row.ticket-head { background: transparent; font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); letter-spacing: 1px; text-transform: uppercase; border-bottom: none; padding-bottom: 6px; }
.priority { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 100px; font-size: 11px; font-weight: 700; width: fit-content; }
.priority.p1 { background: rgba(239,68,68,0.12); color: #DC2626; }
.priority.p2 { background: rgba(252,209,22,0.12); color: var(--gold-ink); }
.priority.p3 { background: rgba(74,222,128,0.15); color: #16A34A; }
.status-inprogress { color: #DC2626; font-weight: 600; }
.status-assigned { color: var(--gold-ink); font-weight: 600; }
.status-done { color: #16A34A; font-weight: 600; }
.escalation-flow { display: flex; align-items: flex-start; justify-content: center; gap: 18px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(10,22,40,0.08); }
.esc-step { text-align: center; width: 120px; }
.esc-num { width: 48px; height: 48px; margin: 0 auto 8px; border-radius: 50%; background: rgba(0,122,69,0.1); border: 2px solid var(--teal); color: var(--teal-ink); font-family: var(--font-display); font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.esc-label { font-size: 11px; color: var(--muted); line-height: 1.4; }
.esc-arrow { color: var(--teal); font-size: 20px; font-weight: 300; padding-top: 12px; }

/* ── PAGE INFOGÉRANCE : TIMELINE DE CRISE ── */
.crisis-timeline { position: relative; max-width: 640px; margin: 0 auto; }
.crisis-step { position: relative; display: flex; gap: 20px; padding-bottom: 36px; }
.crisis-step:last-child { padding-bottom: 0; }
.crisis-step::before { content: ''; position: absolute; left: 23px; top: 50px; bottom: -6px; width: 2px; background: rgba(0,122,69,0.2); }
.crisis-step:last-child::before { display: none; }
.crisis-marker { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: rgba(0,122,69,0.1); border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; z-index: 1; }
.crisis-marker svg { width: 20px; height: 20px; color: var(--teal-ink); }
.crisis-content h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.crisis-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PAGE INFOGÉRANCE : RAPPORT RCA ── */
.rca-mockup { background: var(--bg); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 32px rgba(10,22,40,0.08); max-width: 760px; margin: 0 auto; }
.rca-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 18px 24px; background: var(--ink); color: #F5F8FB; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.5px; }
.rca-header > div { display: flex; align-items: center; gap: 8px; }
.rca-doc-icon svg { width: 15px; height: 15px; color: #60A5FA; display: block; }
.rca-status { background: rgba(74,222,128,0.15); color: #4ade80; padding: 3px 10px; border-radius: 100px; font-size: 10px; font-weight: 700; }
.rca-body { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.rca-field { padding-bottom: 16px; border-bottom: 1px dashed rgba(10,22,40,0.1); }
.rca-field:last-child { border-bottom: none; padding-bottom: 0; }
.rca-field-label { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--teal-ink); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.rca-field p { font-size: 13px; color: var(--text); line-height: 1.7; }
.rca-field.highlight { background: rgba(252,209,22,0.07); margin: 0 -24px; padding: 16px 24px; border-bottom: none; border-radius: 8px; }
.rca-field.highlight .rca-field-label { color: var(--gold-ink); }

/* ── PAGE INFOGÉRANCE : MAINTENANCE PRÉVENTIVE ── */
.maintenance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.maintenance-card { background: var(--card-bg); border: 1px solid rgba(10,22,40,0.08); border-radius: 14px; padding: 24px 20px; text-align: center; transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.maintenance-card:hover { transform: translateY(-4px); border-color: rgba(74,222,128,0.4); }
.maintenance-icon { width: 48px; height: 48px; margin: 0 auto 14px; background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.maintenance-icon svg { width: 22px; height: 22px; color: #16A34A; }
.maintenance-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.maintenance-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.maintenance-freq { display: inline-block; font-family: var(--font-mono); font-size: 10px; color: var(--teal-ink); background: rgba(0,122,69,0.08); padding: 3px 10px; border-radius: 100px; }

@media (max-width: 900px) {
  .noc-wall-grid { grid-template-columns: repeat(2, 1fr); }
  .pilotage-metrics { grid-template-columns: repeat(2, 1fr); }
  .maintenance-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .noc-wall-grid { grid-template-columns: 1fr; }
  .maintenance-grid { grid-template-columns: 1fr; }
  .ticket-row { grid-template-columns: 1fr; gap: 4px; text-align: left; }
  .ticket-row.ticket-head { display: none; }
  .ticket-row:not(.ticket-head) { padding: 14px; }
}

/* ── SCHÉMAS SVG (diagrammes techniques) ── */
.diagram-panel {
  background: rgba(15,28,48,0.95); border: 1px solid rgba(0,122,69,0.25); border-radius: 20px;
  padding: 32px; margin-top: 48px; box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.diagram-title { font-family: var(--font-mono); font-size: 11px; color: #60A5FA; letter-spacing: 2px; margin-bottom: 20px; text-transform: uppercase; }
.diagram-panel svg { width: 100%; height: auto; display: block; }
@media (max-width: 768px) {
  .diagram-panel { padding: 20px; overflow-x: auto; }
  .diagram-panel svg { min-width: 620px; }
}

/* ── MARQUEE ── */
.marquee-section { overflow: hidden; padding: 20px 0; background: rgba(0,122,69,0.05); border-top: 1px solid rgba(0,122,69,0.1); border-bottom: 1px solid rgba(0,122,69,0.1); }
.marquee-track { display: flex; gap: 60px; animation: marquee 20s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); white-space: nowrap; }
.marquee-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; height: 20px; padding: 0 6px; border-radius: 5px;
  font-family: var(--font-display); font-weight: 800; font-size: 9px; color: #FFFFFF; letter-spacing: 0.3px;
  flex-shrink: 0;
}

/* ── SECTIONS COMMUNES ── */
section { position: relative; z-index: 1; }
.section-label { font-family: var(--font-mono); font-size: 11px; color: var(--teal-ink); letter-spacing: 3px; margin-bottom: 12px; display: block; }
h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(32px, 4vw, 52px); color: var(--ink); line-height: 1.1; margin-bottom: 20px; }
h2 .accent { color: var(--teal-ink); }
.section-desc { font-size: 16px; color: var(--muted); max-width: 580px; line-height: 1.8; margin-bottom: 44px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 100px 0; }

.punch-callout {
  background: rgba(252,209,22,0.08); border-left: 3px solid var(--gold); border-radius: 8px;
  padding: 16px 20px; font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 44px; max-width: 700px;
}
.punch-callout strong { color: var(--gold-ink); }

/* ── PAGE HEADER (sous-pages) ── */
.page-header {
  padding: 150px 5% 56px;
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 1;
}
.page-title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 12px; color: #F5F8FB; }
.page-title .accent { color: #60A5FA; }
.page-header p { font-size: 15px; color: #C9D6E4; max-width: 620px; line-height: 1.7; }
.breadcrumb { font-family: var(--font-mono); font-size: 11px; color: #60A5FA; letter-spacing: 2px; margin-bottom: 14px; display: block; }
.breadcrumb a { color: #9FB0C7; text-decoration: none; transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: #60A5FA; }
.photo-credit { display: block; margin-top: 16px; font-size: 10px; color: rgba(245,248,251,0.45); }
.photo-credit a { color: rgba(245,248,251,0.6); }

/* ── PHOTO DE PAGE ── */
.page-photo {
  width: 90%; max-width: 1200px; margin: 40px auto 0; height: 340px;
  border-radius: 20px; overflow: hidden; border: 1px solid var(--card-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); position: relative; z-index: 1;
}
.page-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .page-photo { height: 200px; border-radius: 14px; }
}

/* ── PHOTOS PRÉSENTATION (accueil) ── */
.presentation-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.presentation-photo { height: 280px; border-radius: 16px; overflow: hidden; border: 1px solid var(--card-border); box-shadow: 0 16px 32px rgba(0,0,0,0.3); }
.presentation-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .presentation-photos { grid-template-columns: 1fr; }
  .presentation-photo { height: 200px; }
}

/* ── TEASER CARDS (page d'accueil) ── */
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.teaser-card {
  display: block; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 26px 22px;
  text-decoration: none; transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.teaser-card:hover { transform: translateY(-4px); border-color: rgba(0,122,69,0.4); box-shadow: 0 12px 24px rgba(0,0,0,0.25); }
.teaser-icon { font-size: 28px; display: block; margin-bottom: 14px; }
.teaser-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 6px; }
.teaser-card p { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.teaser-link { font-size: 12.5px; font-weight: 600; color: var(--teal-ink); }

/* ── 3 PILIERS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  display: block; background: var(--card-bg); border: 1px solid rgba(10,22,40,0.07); border-radius: 16px; padding: 32px;
  text-decoration: none; transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pillar-card:hover { transform: translateY(-4px); border-color: rgba(0,122,69,0.4); box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.pillar-icon {
  width: 52px; height: 52px; margin-bottom: 18px; background: rgba(0,122,69,0.1); border: 1px solid rgba(0,122,69,0.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.pillar-card:nth-child(2) .pillar-icon { background: rgba(252,209,22,0.12); border-color: rgba(252,209,22,0.25); }
.pillar-card:nth-child(3) .pillar-icon { background: rgba(232,17,45,0.12); border-color: rgba(232,17,45,0.2); }
.pillar-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 10px; }
.pillar-text { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.pillar-link { font-size: 13px; font-weight: 600; color: var(--teal-ink); }

/* ── ÉQUIPE / ORGANISATION ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: var(--card-bg); border: 1px solid rgba(10,22,40,0.08); border-radius: 14px; padding: 26px 22px; text-align: center; transition: transform 0.45s var(--ease), border-color 0.45s var(--ease); }
.team-card:hover { transform: translateY(-4px); border-color: rgba(0,122,69,0.4); }
.team-icon { width: 52px; height: 52px; margin: 0 auto 16px; background: rgba(0,122,69,0.12); border: 1px solid rgba(0,122,69,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.team-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.team-card p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── SERVICES ── */
#services { background: var(--card-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-alt); border: 1px solid var(--card-border); border-radius: 16px; padding: 32px 28px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0; transition: opacity 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(0,122,69,0.4); box-shadow: 0 12px 28px rgba(0,0,0,0.25); }
.service-card:hover::before { opacity: 1; }

.service-visual {
  width: 100%; height: 130px; background: rgba(0,122,69,0.06); border: 1px solid rgba(0,122,69,0.18);
  border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; overflow: hidden;
}
.service-visual svg { width: 80%; height: 80%; }
.service-card:nth-child(2) .service-visual { background: rgba(252,209,22,0.07); border-color: rgba(252,209,22,0.22); }
.service-card:nth-child(3) .service-visual { background: rgba(232,17,45,0.12); border-color: rgba(232,17,45,0.2); }

h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li { font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal-ink); font-size: 13px; font-weight: 600; text-decoration: none; margin-top: 22px; transition: gap 0.35s var(--ease); }
.service-link:hover { gap: 10px; }

/* ── DÉCRIVEZ VOTRE BESOIN ── */
.needs-box { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 40px; }
.needs-box textarea {
  width: 100%; min-height: 100px; margin: 20px 0 16px; resize: vertical;
  background: rgba(10,22,40,0.02); border: 1px solid rgba(10,22,40,0.15); border-radius: 8px;
  padding: 14px 16px; font-family: var(--font-body); font-size: 14px; color: var(--text); outline: none;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.needs-box textarea:focus { border-color: var(--teal2); background: rgba(0,122,69,0.06); }
.need-result { margin-top: 24px; }
.need-error { font-size: 12px; color: #ff6b6b; }
.need-result-card { background: var(--bg-alt); border: 1px solid rgba(0,122,69,0.3); border-radius: 14px; padding: 26px; }
.need-role { font-family: var(--font-mono); font-size: 11px; color: var(--teal-ink); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.need-role-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 10px; }
.need-role-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

/* ── PROCESSUS ── */
#processus { background: var(--bg); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,122,69,0.4), rgba(0,122,69,0.4), transparent); }
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-num {
  width: 56px; height: 56px; background: var(--bg-alt); border: 2px solid var(--teal2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900;
  font-size: 18px; color: var(--teal-ink); margin: 0 auto 20px;
}
.process-step h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.process-step p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── OFFRES / PRICING ── */
#offres { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.pricing-card { background: var(--card-bg); border: 1px solid rgba(10,22,40,0.08); border-radius: 16px; padding: 32px 24px; position: relative; transition: transform 0.45s var(--ease), border-color 0.45s var(--ease); }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { background: rgba(0,122,69,0.07); border-color: var(--teal2); transform: scale(1.03); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--on-teal); font-size: 10px; font-weight: 700; padding: 4px 14px; border-radius: 100px; letter-spacing: 1px; white-space: nowrap; }
.pricing-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.pricing-for { font-size: 11px; color: var(--muted-2); margin-bottom: 20px; }
.pricing-recommend { font-size: 11px; color: var(--teal-ink); font-style: italic; margin: -12px 0 20px; }
.pricing-price { font-family: var(--font-display); font-weight: 900; font-size: 28px; color: var(--teal-ink); line-height: 1; margin-bottom: 4px; }
.pricing-period { font-size: 11px; color: var(--muted-2); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: rgba(10,22,40,0.08); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { font-size: 13px; color: var(--text); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.pricing-features li .check { color: var(--teal-ink); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.btn-pricing {
  width: 100%; text-align: center; padding: 11px; border-radius: 8px; font-family: var(--font-display); font-weight: 700;
  font-size: 13px; border: 1.5px solid rgba(0,122,69,0.4); color: var(--teal-ink); background: transparent; cursor: pointer;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease); text-decoration: none; display: block;
}
.btn-pricing:hover, .pricing-card.featured .btn-pricing { background: var(--teal); color: var(--on-teal); border-color: var(--teal); }

/* ── SIMULATEUR ── */
.simulator-box { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 40px; }
.sim-equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 16px; margin: 24px 0 28px; }
.sim-equip-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--bg-alt); border: 1px solid rgba(10,22,40,0.07); border-radius: 10px; padding: 10px 12px;
}
.sim-equip-row label { font-size: 12.5px; color: var(--text); font-weight: 500; display: flex; align-items: center; gap: 8px; line-height: 1.3; }
.sim-equip-row input[type="number"] {
  width: 56px; flex-shrink: 0; text-align: center;
  background: rgba(10,22,40,0.02); border: 1px solid rgba(10,22,40,0.15); border-radius: 6px;
  padding: 6px 4px; font-size: 14px; font-family: var(--font-body); color: var(--text); outline: none;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.sim-equip-row input[type="number"]:focus { border-color: var(--teal2); background: rgba(0,122,69,0.06); }
.sim-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.sim-total-live { font-size: 13px; color: var(--muted); font-weight: 500; }
.sim-total-live strong { color: var(--teal-ink); font-family: var(--font-display); font-size: 16px; }
.simulator-result { background: var(--bg-alt); border: 1px solid rgba(0,122,69,0.25); border-radius: 14px; padding: 28px; margin-top: 28px; display: none; }
.simulator-result.visible { display: block; }
.sim-pack-name { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--teal-ink); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.sim-price { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--ink); line-height: 1.2; margin-bottom: 6px; }
.sim-price span { font-size: 13px; font-weight: 600; color: var(--muted); }
.sim-note { font-size: 11px; color: var(--muted-2); margin: 12px 0 18px; line-height: 1.6; }
@media (max-width: 900px) { .sim-equip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sim-equip-grid { grid-template-columns: 1fr; } }

/* ── EXPERTISE ── */
#expertise { background: linear-gradient(180deg, rgba(0,122,69,0.06) 0%, transparent 100%); }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.expertise-content { max-width: 480px; }
.expertise-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.expertise-item { display: flex; gap: 16px; align-items: center; padding: 20px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; transition: border-color 0.45s var(--ease); }
.expertise-item:hover { border-color: rgba(0,122,69,0.45); }
.expertise-num { font-family: var(--font-display); font-weight: 900; font-size: 28px; color: var(--teal-ink); line-height: 1; min-width: 48px; text-align: center; flex-shrink: 0; }
.expertise-text h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.expertise-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.certs-panel { background: var(--card-bg); border: 1px solid rgba(0,122,69,0.3); border-radius: 20px; padding: 36px; }
.certs-title { font-family: var(--font-mono); font-size: 10px; color: var(--teal-ink); letter-spacing: 3px; margin-bottom: 28px; }
.certs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cert-badge { background: rgba(10,22,40,0.025); border: 1px solid rgba(10,22,40,0.08); border-radius: 10px; padding: 14px; text-align: center; transition: border-color 0.45s var(--ease), background 0.45s var(--ease); }
.cert-badge:hover { border-color: rgba(0,122,69,0.4); background: rgba(0,122,69,0.06); }
.cert-logo { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 7px; border-radius: 8px; margin-bottom: 8px; font-family: var(--font-display); font-weight: 800; font-size: 12px; color: #FFFFFF; letter-spacing: 0.5px; }
.cert-name { font-size: 11px; font-weight: 600; color: var(--ink); }
.cert-level { font-size: 10px; color: var(--teal-ink); margin-top: 2px; }
.certs-note { font-size: 11px; color: var(--muted-2); margin-top: 14px; line-height: 1.6; }
.tech-stack { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(10,22,40,0.08); }
.tech-title { font-size: 10px; color: var(--muted-2); letter-spacing: 2px; margin-bottom: 14px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag { background: rgba(0,122,69,0.1); border: 1px solid rgba(0,122,69,0.25); color: var(--teal-ink); font-size: 10px; font-family: var(--font-mono); padding: 4px 10px; border-radius: 4px; }

/* ── FORMATION ── */
#formation { background: var(--card-bg); }
.formation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.formation-card {
  background: var(--bg-alt); border: 1px solid rgba(10,22,40,0.08); border-radius: 14px; padding: 28px 24px;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease); position: relative; overflow: hidden;
}
.formation-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--teal); transform: scaleX(0); transition: transform 0.45s var(--ease); transform-origin: left; }
.formation-card:hover { transform: translateY(-4px); border-color: rgba(0,122,69,0.35); }
.formation-card:hover::after { transform: scaleX(1); }
.formation-cat { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--teal-ink); background: rgba(0,122,69,0.12); padding: 4px 10px; border-radius: 4px; margin-bottom: 14px; }
.formation-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.formation-card p { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.formation-meta { display: flex; gap: 16px; font-size: 11px; color: var(--muted-2); padding-top: 14px; border-top: 1px solid rgba(10,22,40,0.08); }
.formation-meta span { display: flex; align-items: center; gap: 4px; }
.formation-price { color: var(--gold-ink); font-weight: 700; }

/* ── ENGAGEMENTS ── */
#engagements { background: var(--bg); }
.engagements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.engagement-card { background: var(--card-bg); border: 1px solid rgba(10,22,40,0.07); border-radius: 16px; padding: 32px; }
.engagement-icon {
  width: 52px; height: 52px; background: rgba(0,122,69,0.12); border: 1px solid rgba(0,122,69,0.25); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px;
}
.engagement-card:nth-child(2) .engagement-icon { background: rgba(252,209,22,0.12); border-color: rgba(252,209,22,0.25); }
.engagement-card:nth-child(3) .engagement-icon { background: rgba(232,17,45,0.12); border-color: rgba(232,17,45,0.2); }
.engagement-text { font-size: 14px; color: var(--text); line-height: 1.8; }

/* ── CONTACT ── */
#contact { background: linear-gradient(180deg, rgba(0,122,69,0.06) 0%, var(--bg-alt) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { max-width: 400px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: rgba(0,122,69,0.12); border: 1px solid rgba(0,122,69,0.25); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item h5 { font-size: 12px; color: var(--muted-2); margin-bottom: 4px; letter-spacing: 0.5px; }
.contact-item p { font-size: 14px; color: var(--ink); font-weight: 500; }

.contact-form { background: var(--card-bg); border: 1px solid rgba(0,122,69,0.25); border-radius: 20px; padding: 40px; }
.form-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.form-subtitle { font-size: 13px; color: var(--muted-2); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; color: var(--muted-2); font-weight: 500; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(10,22,40,0.02); border: 1px solid rgba(10,22,40,0.15); border-radius: 8px; padding: 12px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal2); background: rgba(0,122,69,0.06); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-2); }
.form-group select option { background: var(--bg-alt); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--teal); color: var(--on-teal); border: none; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; cursor: pointer;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease); margin-top: 8px;
}
.form-submit:hover { background: var(--teal3); transform: translateY(-1px); }

/* ── FOOTER ── */
footer { background: var(--bg-alt); border-top: 1px solid rgba(0,122,69,0.15); padding: 64px 0 32px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 13px; color: var(--muted-2); line-height: 1.8; margin: 16px 0 24px; max-width: 280px; }
.footer-contact-line { font-size: 13px; color: var(--muted-2); margin: -12px 0 20px; }
.footer-contact-line a { color: var(--teal-ink); text-decoration: none; }
.footer-contact-line a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; background: rgba(10,22,40,0.04); border: 1px solid rgba(10,22,40,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--muted-2); text-decoration: none;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.social-btn:hover { background: rgba(0,122,69,0.12); border-color: var(--teal); color: var(--teal-ink); }
.footer-col h5 { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink); margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--muted-2); text-decoration: none; transition: color 0.35s var(--ease); }
.footer-links a:hover { color: var(--teal-ink); }
.footer-cert { background: rgba(0,122,69,0.08); border: 1px solid rgba(0,122,69,0.28); border-radius: 10px; padding: 16px; }
.footer-cert h6 { font-size: 10px; color: var(--teal-ink); letter-spacing: 2px; margin-bottom: 10px; }
.cert-items { display: flex; flex-direction: column; gap: 6px; }
.cert-item { font-size: 12px; color: var(--text); display: flex; align-items: center; gap: 6px; }
.cert-item::before { content: '✓'; color: var(--teal); font-size: 10px; }
.footer-bottom { border-top: 1px solid rgba(10,22,40,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--muted-2); }
.footer-copy span { color: var(--teal-ink); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--muted-2); text-decoration: none; transition: color 0.35s var(--ease); }
.footer-legal a:hover { color: var(--teal-ink); }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr 1fr; }
  .process-steps::before { display: none; }
  .engagements-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .formation-grid { grid-template-columns: 1fr 1fr; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .mobile-nav-toggle { display: flex; }
  .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: 84px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 8px 5% 40px; overflow-y: auto;
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
    z-index: 999; border-top: 1px solid var(--card-border);
  }
  .nav-links.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links > li > a, .nav-dropdown-trigger {
    display: flex; width: 100%; padding: 16px 0; font-size: 15px;
    border-bottom: 1px solid rgba(10,22,40,0.06); justify-content: space-between;
  }
  .btn-nav { justify-content: center; margin-top: 16px; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; padding: 0 0 8px 16px; min-width: 0;
    display: none;
  }
  .nav-dropdown-menu.is-open { display: block; }
  h1 { font-size: 38px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .formation-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .page-header { padding: 130px 5% 40px; }
}
