/* ══════════════════════════════════════════════════════════════
   SYRATEL — style.css
   Palette : Orange #F47B20 · Bleu #29ABE2 · Marine #081520
   ══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --o:       #F47B20;
  --o2:      #FF9B4A;
  --o-pale:  rgba(244,123,32,.12);
  --b:       #29ABE2;
  --b2:      #57C6F0;
  --b-pale:  rgba(41,171,226,.12);
  --navy:    #081520;
  --navy2:   #0D1E30;
  --navy3:   #122535;
  --dark:    #0E1A26;
  --white:   #ffffff;
  --off:     #F4F8FC;
  --gray:    #64748B;
  --border:  rgba(0,0,0,.07);
  --grad:    linear-gradient(120deg, var(--o) 0%, var(--b) 100%);
  --grad-r:  linear-gradient(120deg, var(--b) 0%, var(--o) 100%);
  --ease:    cubic-bezier(.22,.68,0,1.2);
  --ease2:   cubic-bezier(.4,0,.2,1);
  --radius:  14px;
  --radius-l:20px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--o); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── LOADER ──────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity .7s var(--ease2), visibility .7s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 160px;
  animation: fadeScale .9s var(--ease) both;
}
.loader-track {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: var(--grad);
  width: 0;
  animation: loadBar 1.5s var(--ease2) .2s forwards;
}
@keyframes loadBar  { to { width: 100%; } }
@keyframes fadeScale { from { opacity:0; transform:scale(.8); } to { opacity:1; transform:none; } }

/* ── SCROLL PROGRESS ─────────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 600;
  background: var(--grad);
  width: 0; transition: width .08s linear;
  pointer-events: none;
}

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.section    { padding: 96px 0; }
.section-alt  { background: var(--off); }
.section-dark { background: var(--navy); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity .75s var(--ease2), transform .75s var(--ease2);
  transition-delay: var(--delay, 0s);
}
.reveal   { transform: translateY(36px); }
.reveal-l { transform: translateX(-36px); }
.reveal-r { transform: translateX(36px); }
.reveal.visible, .reveal-l.visible, .reveal-r.visible {
  opacity: 1; transform: none;
}

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────────── */
.eyebrow-label {
  display: inline-block; margin-bottom: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-head { margin-bottom: 56px; }
.sec-head h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(28px, 3.8vw, 46px); font-weight: 800; line-height: 1.07;
  color: var(--dark); margin-bottom: 14px;
}
.sec-head p { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 620px; }
.sec-head-light h2 { color: #fff; }
.sec-head-light p   { color: rgba(255,255,255,.48); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #fff;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(244,123,32,.35);
  transition: transform .25s var(--ease), box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: "";  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0; transition: opacity .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(244,123,32,.48); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,.82);
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: 1.5px solid rgba(41,171,226,.38);
  transition: border-color .2s, background .2s, transform .2s var(--ease);
}
.btn-ghost:hover { border-color: var(--b); background: rgba(41,171,226,.1); transform: translateY(-2px); }

/* ── NAV ─────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background .4s var(--ease2), backdrop-filter .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(8,21,32,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 28px rgba(0,0,0,.4);
}
#nav::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px;
  background: var(--grad); opacity: 0; transition: opacity .4s;
}
#nav.scrolled::after { opacity: 1; }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; height: 46px; text-decoration: none; }
.nav-brand img {
  height: 100%; width: auto;
  padding: 6px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  transition: background .2s, border-color .2s;
}
.nav-brand img:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.22); }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.65); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: .6px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:not(.nav-cta):hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(244,123,32,.35);
  transition: transform .2s var(--ease), box-shadow .2s !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 10px 28px rgba(244,123,32,.5) !important; background: transparent !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; border: none; background: none; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 92px 5% 64px;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: -80px;
  background-image:
    linear-gradient(rgba(41,171,226,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,171,226,.055) 1px, transparent 1px);
  background-size: 58px 58px;
  animation: gridDrift 50s linear infinite;
}
@keyframes gridDrift { to { transform: translate(58px, 58px); } }
.hero-halo {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(2px);
}
.hero-halo-o {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(244,123,32,.14) 0%, transparent 68%);
  top: -200px; right: -120px;
  animation: haloPulse 9s ease-in-out infinite alternate;
}
.hero-halo-b {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(41,171,226,.10) 0%, transparent 68%);
  bottom: -140px; left: -80px;
  animation: haloPulse 11s ease-in-out infinite alternate-reverse;
}
@keyframes haloPulse { to { transform: scale(1.18) translate(24px, -24px); } }
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particles .p {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  animation: pfloat linear infinite;
}
@keyframes pfloat {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: .5; }
  100% { transform: translateY(-10vh) scale(1.8); opacity: 0; }
}
.hero-inner {
  position: relative; width: 100%; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(41,171,226,.1); border: 1px solid rgba(41,171,226,.28);
  color: #7DD6F5; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 22px; margin-bottom: 28px;
  animation: fadeUp .8s var(--ease) .3s both;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--b);
  animation: blinkDot 2s infinite;
}
@keyframes blinkDot { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(34px, 4.8vw, 64px); font-weight: 800; line-height: 1.04;
  color: #fff; margin-bottom: 22px;
  animation: fadeUp .8s var(--ease) .45s both;
}
.hero-h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16.5px; line-height: 1.74; color: rgba(255,255,255,.56);
  max-width: 520px; margin-bottom: 24px;
  animation: fadeUp .8s var(--ease) .58s both;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
  animation: fadeUp .8s var(--ease) .68s both;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75); font-size: 12px; font-weight: 500;
  padding: 5px 14px; border-radius: 22px;
  transition: background .2s, border-color .2s;
}
.pill:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.pill-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
}
.pill-o .pill-dot { background: var(--o); }
.pill-b .pill-dot { background: var(--b); }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .78s both;
}
.hero-stats {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 40px;
  animation: fadeUp .8s var(--ease) .9s both;
}
.stat { cursor: default; }
.stat-n {
  font-family: "Rajdhani", sans-serif; font-size: 42px; font-weight: 800; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-n span { font-size: .65em; }
.stat-l { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: .9px; margin-top: 5px; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.1); }

/* Hero card right */
.hero-visual { display: flex; align-items: center; justify-content: center; animation: fadeUp .8s var(--ease) .5s both; }
.hero-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-l); padding: 44px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 40px 80px rgba(0,0,0,.45),
    0 0 80px rgba(244,123,32,.1),
    0 0 80px rgba(41,171,226,.08);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: calc(var(--radius-l) + 1px);
  background: var(--grad); opacity: .2; z-index: -1;
  animation: borderGlow 4s ease-in-out infinite alternate;
}
@keyframes borderGlow { to { opacity: .5; } }
.hero-card img { width: 280px; max-width: 100%; }
.hero-card-badge {
  position: absolute;
  background: rgba(13,30,46,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3); white-space: nowrap;
  animation: badgeIn .7s var(--ease) 1.2s both;
}
.hcb-1 { bottom: -18px; left: -36px; animation-delay: 1.3s; }
.hcb-2 { top: -18px; right: -28px; animation-delay: 1.6s; }
.hero-card-badge strong { display: block; font-size: 12px; font-weight: 700; color: #fff; }
.hero-card-badge small  { display: block; font-size: 10px; color: var(--gray); margin-top: 1px; }
.hcb-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hcb-dot-o { background: var(--o); box-shadow: 0 0 8px var(--o); }
.hcb-dot-b { background: var(--b); box-shadow: 0 0 8px var(--b); }
@keyframes badgeIn { from{opacity:0;transform:scale(.8) translateY(8px)} to{opacity:1;transform:none} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }

/* ── SERVICES ────────────────────────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.srv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s;
  cursor: default;
}
.srv-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 20px 56px rgba(0,0,0,.11); }
/* top-bar gradient on hover */
.srv-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  transform-origin: left; transform: scaleX(0);
  transition: transform .4s var(--ease);
  z-index: 1;
}
.srv-card:hover::before { transform: scaleX(1); }
.srv-card-top { height: 196px; overflow: hidden; }
.srv-card-top img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s var(--ease); }
.srv-card:hover .srv-card-top img { transform: scale(1.05); }
.srv-card-body { padding: 26px 26px 30px; }
.srv-card-body--solo { padding-top: 32px; }
.srv-icon-wrap {
  width: 48px; height: 48px; border-radius: 11px;
  background: linear-gradient(135deg, var(--o-pale), var(--b-pale));
  border: 1px solid rgba(244,123,32,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.srv-icon-wrap svg { width: 22px; height: 22px; stroke: var(--o); }
.srv-card:hover .srv-icon-wrap { transform: scale(1.12) rotate(-4deg); box-shadow: 0 6px 20px rgba(244,123,32,.22); }
.srv-card-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 9px; line-height: 1.3; }
.srv-card-body p  { font-size: 14px; color: var(--gray); line-height: 1.65; }
.srv-cta {
  display: inline-flex; align-items: center; margin-top: 20px;
  font-size: 13px; font-weight: 600; color: var(--o);
  text-decoration: none; gap: 4px;
  transition: gap .2s;
}
.srv-cta:hover { gap: 8px; }

/* Glow cursor effect */
.glow-card { isolation: isolate; }
.glow-orb {
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(244,123,32,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  z-index: 0;
}
.glow-card:hover .glow-orb { opacity: 1; }

/* ── KPIs BAND ───────────────────────────────────────────────── */
.kpis-band {
  background: var(--navy2);
  padding: 56px 5%;
  position: relative; overflow: hidden;
}
.kpis-band::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad); }
.kpis-band::after  { content:""; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--grad-r); }
.kpis-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 40px;
}
.kpi { text-align: center; }
.kpi-n {
  font-family: "Rajdhani", sans-serif; font-size: 60px; font-weight: 800; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform .3s var(--ease);
}
.kpi:hover .kpi-n { transform: scale(1.07); }
.kpi-l { font-size: 12px; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 8px; }
.kpi-divider { width: 1px; height: 60px; background: rgba(255,255,255,.08); }

/* ── RÉALISATIONS ────────────────────────────────────────────── */
.real-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.real-card {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  aspect-ratio: 16/10;
  cursor: default;
}
.real-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.real-card:hover img { transform: scale(1.06); }
.real-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,21,32,.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; opacity: 0; transition: opacity .35s;
}
.real-card:hover .real-overlay { opacity: 1; }
.real-tag {
  display: inline-block; margin-bottom: 8px;
  background: var(--grad); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 6px; width: fit-content;
}
.real-overlay p { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.5; }

/* ── PARTENAIRES ─────────────────────────────────────────────── */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.partner-card {
  border: 1px solid var(--border); border-radius: var(--radius-l);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .3s, transform .3s var(--ease); position: relative;
}
.partner-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.09); transform: translateY(-4px); }
.partner-img-wrap {
  height: 210px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--off), #e8f4fb); overflow: hidden;
}
.partner-img-wrap img { max-width: 90%; max-height: 90%; object-fit: contain; }
.partner-img-wrap.partner-img-cover img { max-width: 100%; max-height: 100%; object-fit: cover; }
.partner-body { padding: 26px 28px 30px; flex: 1; }
.partner-logo  { height: 30px; object-fit: contain; display: block; margin-bottom: 14px; }
.partner-body h3  { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 9px; }
.partner-body p   { font-size: 14px; color: var(--gray); line-height: 1.65; }
.partner-subtitle { font-size: 13px; font-weight: 400; color: var(--gray); }
.badge-grad {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 14px;
  background: var(--grad); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 6px;
}
.badge-white {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9) !important;
}

/* Standby band */
.standby-band {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius-l); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
}
.standby-band::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad); }
.standby-band > img { width: 100%; height: 100%; min-height: 280px; object-fit: contain; background: #fff; padding: 20px; display: block; }
.standby-band-text { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.standby-band-text h3 {
  font-family: "Rajdhani", sans-serif; font-size: 26px; font-weight: 800;
  color: #fff; margin-bottom: 14px;
}
.standby-band-text p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.68; margin-bottom: 10px; }

/* ── À PROPOS / ATOUTS ───────────────────────────────────────── */
.atouts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.atout {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 28px 24px;
  transition: background .3s, border-color .3s, transform .3s var(--ease);
  cursor: default;
}
.atout:hover { background: rgba(255,255,255,.06); border-color: rgba(244,123,32,.35); transform: translateY(-4px); }
.atout-icon { font-size: 26px; margin-bottom: 16px; display: block; transition: transform .3s var(--ease); }
.atout:hover .atout-icon { transform: scale(1.18) rotate(-4deg); }
.atout h3 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.atout p  { font-size: 13.5px; color: rgba(255,255,255,.44); line-height: 1.65; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; }
.c-info h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.alert-rdv {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(135deg, rgba(244,123,32,.08), rgba(244,123,32,.03));
  border: 1px solid rgba(244,123,32,.22); border-left: 3px solid var(--o);
  border-radius: 0 10px 10px 0; padding: 14px 16px; margin-bottom: 24px;
}
.alert-rdv svg { width: 20px; height: 20px; stroke: var(--o); flex-shrink: 0; margin-top: 2px; }
.alert-rdv strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.alert-rdv span   { font-size: 13px; color: var(--gray); }
.c-list { list-style: none; }
.ci {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px;
  transition: transform .2s; cursor: default;
}
.ci:hover { transform: translateX(4px); }
.ci-ic {
  width: 42px; height: 42px; min-width: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--o-pale), var(--b-pale));
  border: 1px solid rgba(244,123,32,.15);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.ci-ic svg { width: 18px; height: 18px; stroke: var(--o); }
.ci:hover .ci-ic { transform: scale(1.1); box-shadow: 0 4px 14px rgba(244,123,32,.2); }
.ci-txt strong   { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.ci-txt span, .ci-txt a { display: block; font-size: 13.5px; color: var(--gray); text-decoration: none; line-height: 1.55; }
.ci-txt a:hover  { color: var(--o); }
.ci-warn { color: var(--o) !important; font-weight: 600; font-size: 12px !important; margin-top: 3px; }
.map-box { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 22px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.map-box iframe { display: block; width: 100%; height: 200px; border: none; }

/* Form */
.c-form-wrap {
  background: #fff; padding: 40px; border-radius: var(--radius-l);
  border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; margin-bottom: 18px; }
.fg label {
  font-size: 11px; font-weight: 700; color: var(--dark);
  margin-bottom: 7px; letter-spacing: .6px; text-transform: uppercase;
}
.fg label span { color: var(--o); }
.fg input, .fg textarea, .fg select {
  border: 1.5px solid rgba(0,0,0,.1); border-radius: 9px;
  padding: 12px 15px; font-size: 14px; font-family: "Inter", sans-serif;
  color: var(--dark); background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--o);
  box-shadow: 0 0 0 3px rgba(244,123,32,.12);
}
.fg textarea { resize: vertical; min-height: 112px; }
.f-error { display: block; font-size: 12px; color: #e53e3e; margin-top: 5px; min-height: 16px; }
.f-legal { font-size: 12px; color: var(--gray); line-height: 1.55; margin-bottom: 20px; }
.f-legal a { color: var(--o); text-decoration: underline; }
.btn-submit { width: 100%; justify-content: center; font-size: 15px; position: relative; }
.btn-spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.loading .btn-text { opacity: 0; }
.btn-submit.loading .btn-spinner { display: block; position: absolute; }

/* Feedback */
.form-feedback {
  margin-top: 16px; padding: 0; max-height: 0; overflow: hidden;
  border-radius: 9px; font-size: 14px; font-weight: 500;
  transition: max-height .4s var(--ease2), padding .4s;
}
.form-feedback.success {
  max-height: 80px; padding: 14px 18px;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3);
  color: #065f46;
}
.form-feedback.error {
  max-height: 80px; padding: 14px 18px;
  background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25);
  color: #991b1b;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 56px 0 28px; position: relative; }
.footer-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  margin-bottom: 44px;
}
.footer-logo {
  height: 52px; width: auto;
  padding: 8px 16px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  display: block; margin-bottom: 14px;
}
.footer-brand p   { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; margin-bottom: 4px; }
.footer-sub       { font-size: 11.5px; color: rgba(255,255,255,.22); margin-top: 6px; }
.footer-phones    { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer-phone     { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s; }
.footer-phone:hover { color: var(--o); }
.footer-nav h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px; display: inline-block;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a  { color: rgba(255,255,255,.4); text-decoration: none; font-size: 13.5px; transition: color .2s, padding-left .2s; }
.footer-nav a:hover { color: #fff; padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.24); }

/* ── MODAL MENTIONS LÉGALES ──────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 800; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,21,32,.75);
  backdrop-filter: blur(8px);
  animation: fadeIn .3s var(--ease2);
}
.modal-box {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius-l);
  max-width: 720px; width: 100%; max-height: 88vh;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  animation: modalIn .4s var(--ease);
}
@keyframes modalIn { from{opacity:0;transform:scale(.92) translateY(16px)} to{opacity:1;transform:none} }
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--off); display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.modal-close svg { width: 18px; height: 18px; stroke: var(--dark); }
.modal-close:hover { background: rgba(244,123,32,.12); transform: rotate(90deg); }
.modal-content {
  padding: 44px 40px 40px; overflow-y: auto;
}
.modal-content h2 {
  font-family: "Rajdhani", sans-serif; font-size: 26px; font-weight: 800;
  color: var(--dark); margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid;
  border-image: var(--grad) 1;
}
.modal-content h3 {
  font-size: 15px; font-weight: 700; color: var(--dark);
  margin: 24px 0 8px; padding-left: 12px;
  border-left: 3px solid var(--o);
}
.modal-content p { font-size: 14px; color: var(--gray); line-height: 1.72; margin-bottom: 6px; }
.modal-content strong { color: var(--dark); }
.modal-content em { color: var(--gray); font-style: italic; }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.btt {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(244,123,32,.4);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease);
}
.btt:not([hidden]) { opacity: 1; transform: none; pointer-events: all; }
.btt svg { width: 18px; height: 18px; stroke: #fff; }
.btt:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(244,123,32,.55); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .atouts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .partner-grid { grid-template-columns: 1fr; }
  .standby-band { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: rgba(8,21,32,.97); backdrop-filter: blur(16px); padding: 20px 5%; gap: 4px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .srv-grid { grid-template-columns: 1fr; }
  .atouts-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 22px; }
  .kpi-divider { display: none; }
  .modal-content { padding: 32px 24px 28px; }
}

/* ═══════════════════════════════════════════════
   VIDÉOS — hover to play (portrait 9/16)
═══════════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.video-card {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy);
  cursor: pointer;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.video-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 22px 60px rgba(0,0,0,.2);
}
.video-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  transform-origin: left; transform: scaleX(0);
  transition: transform .4s var(--ease);
  z-index: 3;
}
.video-card:hover::before { transform: scaleX(1); }

/* Portrait wrapper — ratio 9/16 */
.video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--navy2);
}

.vid-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.video-card:hover .vid-player { transform: scale(1.04); }

/* Overlay */
.video-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(
    to top,
    rgba(8,21,32,.88) 0%,
    rgba(8,21,32,.1) 40%,
    transparent 100%
  );
  transition: background .35s;
}

/* Icône play */
.video-play-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .3s var(--ease), opacity .3s, background .3s, box-shadow .3s;
  pointer-events: none;
  flex-shrink: 0;
}
.video-play-icon svg { width: 24px; height: 24px; margin-left: 5px; }

.video-card.playing .video-play-icon {
  opacity: 0;
  transform: scale(.6);
}
.video-card:not(.playing):hover .video-play-icon {
  background: var(--grad);
  border-color: transparent;
  transform: scale(1.12);
  box-shadow: 0 0 32px rgba(244,123,32,.55);
}

/* Caption */
.video-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .38s var(--ease), opacity .38s;
  pointer-events: none;
}
.video-card:hover .video-caption,
.video-card.playing .video-caption {
  transform: translateY(0);
  opacity: 1;
}
.video-caption-tag {
  display: inline-block; margin-bottom: 8px;
  background: var(--grad); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 5px;
}
.video-caption p {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.93);
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

/* Barre de progression */
.video-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,.1);
  z-index: 2;
}
.video-progress-fill {
  height: 100%;
  background: var(--grad);
  width: 0%;
  transition: width .1s linear;
}

/* Drapeau français SVG */
.flag-fr {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   ATOUT ICONS SVG (remplacement emojis)
═══════════════════════════════════════════════ */
.atout-svg-icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(244,123,32,.1), rgba(41,171,226,.08));
  border: 1px solid rgba(244,123,32,.15);
  margin-bottom: 16px;
  transition: transform .3s var(--ease), box-shadow .3s;
  flex-shrink: 0;
}
.atout-svg-icon svg { width: 22px; height: 22px; stroke: var(--o); }
.atout:hover .atout-svg-icon {
  transform: scale(1.14) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(244,123,32,.22);
}
.atout:nth-child(even) .atout-svg-icon {
  background: linear-gradient(135deg, rgba(41,171,226,.1), rgba(41,171,226,.05));
  border-color: rgba(41,171,226,.15);
}
.atout:nth-child(even) .atout-svg-icon svg { stroke: var(--b); }

/* Footer — email & Facebook */
.footer-email {
  color: rgba(255,255,255,.52) !important;
  font-size: 13px !important; font-weight: 400 !important;
}
.footer-email:hover { color: var(--o) !important; }

.footer-facebook {
  display: inline-flex !important; align-items: center; gap: 7px;
  color: rgba(255,255,255,.52) !important;
  font-size: 13px !important; font-weight: 500 !important;
  margin-top: 4px;
  transition: color .2s;
}
.footer-facebook:hover { color: #4267B2 !important; }

/* Modal liens */
.modal-content a {
  color: var(--o); text-decoration: underline;
  text-underline-offset: 3px;
}
.modal-content a:hover { color: var(--o2); }
