/*
Theme Name: IG Services
Theme URI: https://google.com
Author: IG Services
Author URI: https://google.com
Description: Theme one-page pour IG Services - services informatiques : sites web, CRM sur mesure, systemes de pointage, automatisation et SEO.
Version: 1.0.0
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ig-services
*/
/* ============================================================
   Iyed Ghribi — Portfolio | Feuille de style principale
   ============================================================ */

:root {
  --fond: #06080f;
  --fond-2: #0a0e1a;
  --carte: rgba(255, 255, 255, 0.04);
  --carte-bord: rgba(255, 255, 255, 0.09);
  --texte: #e8eaf2;
  --texte-doux: #9aa3b8;
  --accent-1: #6366f1;
  --accent-2: #22d3ee;
  --accent-3: #a855f7;
  --degrade: linear-gradient(120deg, #6366f1, #22d3ee);
  --degrade-3: linear-gradient(120deg, #6366f1, #a855f7, #22d3ee);
  --rayon: 18px;
  --police-titre: 'Sora', sans-serif;
  --police-texte: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--police-texte);
  background: var(--fond);
  color: var(--texte);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--police-titre); line-height: 1.15; }

.conteneur { width: min(1180px, 92%); margin: 0 auto; }

.degrade-texte {
  background: var(--degrade-3);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: brille 6s linear infinite;
}
@keyframes brille { to { background-position: 200% center; } }

/* ============ Boutons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px; font-family: var(--police-titre);
  cursor: pointer; border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-principal {
  background: var(--degrade);
  color: #fff;
  box-shadow: 0 8px 30px rgba(99, 102, 241, .35);
}
.btn-principal:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(34, 211, 238, .35); }
.btn-secondaire {
  background: var(--carte); color: var(--texte);
  border: 1px solid var(--carte-bord);
  backdrop-filter: blur(8px);
}
.btn-secondaire:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); }
.btn-contour {
  border: 1.5px solid rgba(129, 140, 248, .5); color: #c7d2fe;
  background: rgba(99, 102, 241, .08); padding: 12px 24px;
}
.btn-contour:hover { background: rgba(99, 102, 241, .2); transform: translateY(-2px); }
.btn-pleine { width: 100%; justify-content: center; }
.btn-nav { padding: 10px 20px; font-size: 14px; }

/* ============ Navigation ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav.solide {
  background: rgba(6, 8, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
  border-bottom: 1px solid var(--carte-bord);
}
.nav-int { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icone {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--degrade);
  display: grid; place-items: center;
  font-family: var(--police-titre); font-weight: 800; font-size: 15px; color: #fff;
  box-shadow: 0 4px 18px rgba(99, 102, 241, .45);
}
.logo-texte { font-family: var(--police-titre); font-size: 19px; font-weight: 400; }
.logo-texte b { font-weight: 800; }
.nav-liens { display: flex; align-items: center; gap: 26px; }
.nav-liens a:not(.btn) {
  font-size: 15px; color: var(--texte-doux); font-weight: 500;
  position: relative; transition: color .25s;
}
.nav-liens a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--degrade); transition: width .3s ease;
}
.nav-liens a:not(.btn):hover { color: var(--texte); }
.nav-liens a:not(.btn):hover::after { width: 100%; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span {
  display: block; width: 26px; height: 2.5px; border-radius: 3px;
  background: var(--texte); margin: 5.5px 0; transition: .3s ease;
}
.burger.ouvert span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.ouvert span:nth-child(2) { opacity: 0; }
.burger.ouvert span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Héro ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-fond { position: absolute; inset: 0; pointer-events: none; }
.orbe {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  animation: flotte 14s ease-in-out infinite alternate;
}
.orbe-1 { width: 480px; height: 480px; background: #4f46e5; top: -140px; left: -120px; }
.orbe-2 { width: 420px; height: 420px; background: #0891b2; bottom: -120px; right: -100px; animation-delay: -5s; }
.orbe-3 { width: 300px; height: 300px; background: #7c3aed; top: 40%; left: 55%; opacity: .3; animation-delay: -9s; }
@keyframes flotte {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, 40px) scale(1.12); }
}
.grille-fond {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 30%, transparent 75%);
}

.hero-int {
  position: relative; display: grid;
  grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 999px;
  background: var(--carte); border: 1px solid var(--carte-bord);
  font-size: 13.5px; color: var(--texte-doux); font-weight: 500;
  backdrop-filter: blur(8px);
}
.point-vert {
  width: 9px; height: 9px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
  animation: pulse-vert 2s infinite;
}
@keyframes pulse-vert {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800; letter-spacing: -1px;
  margin: 22px 0 20px;
}
.hero-sous { font-size: 17.5px; color: var(--texte-doux); max-width: 560px; }
.hero-sous strong { color: var(--texte); }
.hero-boutons { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 46px; margin-top: 52px; flex-wrap: wrap; }
.stat p { font-size: 13.5px; color: var(--texte-doux); margin-top: 2px; }
.stat-num, .stat-plus {
  font-family: var(--police-titre); font-size: 32px; font-weight: 800;
  background: var(--degrade);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Apparition au chargement */
.apparait { opacity: 0; transform: translateY(26px); animation: apparait .8s ease forwards; }
.delai-1 { animation-delay: .12s; }
.delai-2 { animation-delay: .24s; }
.delai-3 { animation-delay: .36s; }
.delai-4 { animation-delay: .5s; }
@keyframes apparait { to { opacity: 1; transform: translateY(0); } }

/* Visuel héro */
.hero-visuel { position: relative; height: 440px; }
.carte-flottante {
  position: absolute;
  background: rgba(15, 19, 34, .85);
  border: 1px solid var(--carte-bord);
  border-radius: var(--rayon);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}
.carte-code {
  width: 78%; height: 320px; top: 40px; left: 4%;
  padding: 18px;
  animation: flotte-carte 7s ease-in-out infinite;
}
.mock-barre { display: flex; gap: 7px; margin-bottom: 16px; }
.mock-barre span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.16); }
.mock-barre span:first-child { background: #f87171; }
.mock-barre span:nth-child(2) { background: #fbbf24; }
.mock-barre span:nth-child(3) { background: #4ade80; }
.mock-lignes .ligne {
  height: 9px; border-radius: 5px; margin-bottom: 10px;
  background: linear-gradient(90deg, rgba(99,102,241,.5), rgba(34,211,238,.35));
  animation: charge 2.8s ease-in-out infinite;
}
.ligne.l1 { width: 62%; } .ligne.l2 { width: 84%; animation-delay: .2s; }
.ligne.l3 { width: 48%; animation-delay: .4s; } .ligne.l4 { width: 72%; animation-delay: .6s; }
.ligne.l5 { width: 36%; animation-delay: .8s; }
@keyframes charge { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
.mock-graphe {
  display: flex; align-items: flex-end; gap: 10px;
  height: 110px; margin-top: 24px; padding: 0 6px;
}
.mock-graphe .barre {
  flex: 1; border-radius: 6px 6px 3px 3px;
  background: var(--degrade);
  height: var(--h);
  opacity: .85;
  animation: grandit 1.4s cubic-bezier(.2, .8, .3, 1.1) both;
  transform-origin: bottom;
}
.mock-graphe .barre:nth-child(2) { animation-delay: .1s; }
.mock-graphe .barre:nth-child(3) { animation-delay: .2s; }
.mock-graphe .barre:nth-child(4) { animation-delay: .3s; }
.mock-graphe .barre:nth-child(5) { animation-delay: .4s; }
.mock-graphe .barre:nth-child(6) { animation-delay: .5s; }
@keyframes grandit { from { transform: scaleY(0); } }
.carte-notif {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; right: 0; top: 0;
  animation: flotte-carte 6s ease-in-out infinite reverse;
}
.carte-notif b, .carte-seo b { display: block; font-size: 14px; font-family: var(--police-titre); }
.carte-notif small, .carte-seo small { color: var(--texte-doux); font-size: 12px; }
.notif-icone {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(74, 222, 128, .18); color: #4ade80;
  display: grid; place-items: center; font-weight: 700;
}
.carte-seo {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; left: 0; bottom: 10px;
  animation: flotte-carte 8s ease-in-out infinite;
  animation-delay: -3s;
}
.seo-cercle {
  width: 40px; height: 40px; border-radius: 50%;
  background: conic-gradient(#22d3ee 78%, rgba(255,255,255,.1) 0);
  display: grid; place-items: center;
  font-size: 10.5px; font-weight: 800; font-family: var(--police-titre);
  position: relative;
}
.seo-cercle::before { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: #0f1322; }
.seo-cercle { color: #22d3ee; }
.seo-cercle::after { content: 'SEO'; position: relative; }
.seo-cercle { font-size: 0; }
.seo-cercle::after { font-size: 10.5px; }
@keyframes flotte-carte {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.fleche-bas {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 46px; border: 2px solid rgba(255,255,255,.25);
  border-radius: 999px; display: flex; justify-content: center; padding-top: 8px;
}
.fleche-bas span {
  width: 4px; height: 9px; border-radius: 4px; background: var(--accent-2);
  animation: molette 1.8s ease infinite;
}
@keyframes molette {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ============ Sections ============ */
.section { padding: 110px 0; position: relative; }
.section-sombre {
  background: var(--fond-2);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.section-entete { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.surtitre {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 14px;
}
.section-entete h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 16px; }
.section-entete p { color: var(--texte-doux); font-size: 16.5px; }

/* Révélation au défilement */
.revele { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.revele.visible { opacity: 1; transform: translateY(0); }

/* ============ Services ============ */
.grille-services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.carte-service {
  background: var(--carte); border: 1px solid var(--carte-bord);
  border-radius: var(--rayon); padding: 34px 28px;
  position: relative; overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.carte-service::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--sx, 50%) var(--sy, 0%), rgba(99, 102, 241, .13), transparent 65%);
  opacity: 0; transition: opacity .4s ease;
}
.carte-service:hover { transform: translateY(-8px); border-color: rgba(129, 140, 248, .4); }
.carte-service:hover::before { opacity: 1; }
.service-icone {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 22px;
  transition: transform .35s ease;
}
.carte-service:hover .service-icone { transform: scale(1.1) rotate(-4deg); }
.ic-bleu   { background: rgba(99, 102, 241, .15);  color: #818cf8; }
.ic-violet { background: rgba(168, 85, 247, .15);  color: #c084fc; }
.ic-cyan   { background: rgba(34, 211, 238, .15);  color: #22d3ee; }
.ic-orange { background: rgba(251, 146, 60, .15);  color: #fb923c; }
.ic-vert   { background: rgba(74, 222, 128, .15);  color: #4ade80; }
.ic-rose   { background: rgba(244, 114, 182, .15); color: #f472b6; }
.carte-service h3 { font-size: 19.5px; margin-bottom: 12px; }
.carte-service p { color: var(--texte-doux); font-size: 15px; }

/* ============ Réalisations ============ */
.projet {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 60px; align-items: center;
  margin-bottom: 110px;
}
.projet:last-child { margin-bottom: 0; }
.projet-inverse .projet-visuel { order: 2; }
.projet-inverse .projet-texte { order: 1; }

.projet-tag {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 18px;
}
.tag-violet { background: rgba(168, 85, 247, .14); color: #c084fc; border: 1px solid rgba(168, 85, 247, .3); }
.tag-cyan   { background: rgba(34, 211, 238, .12); color: #22d3ee; border: 1px solid rgba(34, 211, 238, .3); }
.tag-orange { background: rgba(251, 146, 60, .12); color: #fb923c; border: 1px solid rgba(251, 146, 60, .3); }
.projet-texte h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; margin-bottom: 16px; }
.projet-texte > p { color: var(--texte-doux); margin-bottom: 22px; }
.projet-points { list-style: none; margin-bottom: 30px; }
.projet-points li {
  padding-left: 30px; position: relative; margin-bottom: 11px;
  color: var(--texte); font-size: 15.5px;
}
.projet-points li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--degrade); color: #fff;
  font-size: 12px; font-weight: 700;
  display: grid; place-items: center;
}

/* Fenêtre de navigateur simulée */
.navigateur {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--carte-bord);
  background: #0d1120;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  transition: transform .5s ease;
}
.projet:hover .navigateur { transform: translateY(-8px) scale(1.015); }
.nav-barre {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px; background: rgba(255,255,255,.045);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-barre span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.15); }
.nav-barre span:nth-child(1) { background: #f87171; }
.nav-barre span:nth-child(2) { background: #fbbf24; }
.nav-barre span:nth-child(3) { background: #4ade80; }
.nav-url {
  flex: 1; margin-left: 12px; padding: 5px 14px;
  background: rgba(255,255,255,.06); border-radius: 8px;
  font-size: 12px; color: var(--texte-doux);
}

/* Maquette CRM */
.crm-mock { display: flex; min-height: 300px; }
.crm-cote {
  width: 64px; background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 16px 12px; display: flex; flex-direction: column; gap: 12px;
}
.crm-logo { width: 100%; aspect-ratio: 1; border-radius: 10px; background: var(--degrade); margin-bottom: 10px; }
.crm-menu { height: 9px; border-radius: 5px; background: rgba(255,255,255,.1); }
.crm-menu.actif { background: rgba(129, 140, 248, .55); }
.crm-corps { flex: 1; padding: 18px; }
.crm-tuiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.crm-tuile {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 12px 14px;
}
.crm-tuile b { font-family: var(--police-titre); font-size: 19px; display: block; }
.crm-tuile span { font-size: 11px; color: var(--texte-doux); }
.crm-tuile.t-accent { background: rgba(99, 102, 241, .16); border-color: rgba(99, 102, 241, .4); }
.crm-tuile.t-accent b { color: #a5b4fc; }
.crm-graphique {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px; padding: 10px; margin-bottom: 14px;
}
.crm-graphique svg { width: 100%; height: 80px; }
.courbe-trait { stroke-dasharray: 600; stroke-dashoffset: 600; }
.visible .courbe-trait, .projet.visible .courbe-trait { animation: trace 2.4s ease forwards .4s; }
@keyframes trace { to { stroke-dashoffset: 0; } }
.crm-rangees { display: flex; flex-direction: column; gap: 8px; }
.crm-rangee {
  height: 26px; border-radius: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.05);
}

/* Maquette pointage (téléphone) */
.scene-pointage { position: relative; display: flex; justify-content: center; padding: 20px 0; }
.telephone {
  width: 250px; border-radius: 34px;
  background: #0d1120; border: 1px solid var(--carte-bord);
  padding: 12px; position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  transition: transform .5s ease;
}
.projet:hover .telephone { transform: translateY(-8px) rotate(-1.2deg); }
.tel-encoche {
  width: 84px; height: 22px; border-radius: 999px;
  background: #05070d; margin: 4px auto 10px;
}
.tel-ecran {
  border-radius: 24px; background: linear-gradient(180deg, #0f1428, #0a0e1c);
  padding: 20px 16px 22px; text-align: center;
  border: 1px solid rgba(255,255,255,.05);
}
.tel-entete { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--texte-doux); font-weight: 600; }
.tel-horloge { font-family: var(--police-titre); font-size: 40px; font-weight: 800; margin: 10px 0 2px; }
.tel-projet { font-size: 12.5px; color: var(--accent-2); margin-bottom: 16px; }
.tel-bouton {
  position: relative; width: 108px; height: 108px; border-radius: 50%;
  border: none; background: var(--degrade); color: #fff;
  font-family: var(--police-titre); font-weight: 800; font-size: 14px; letter-spacing: 1.5px;
  margin: 0 auto 18px; display: grid; place-items: center; cursor: default;
  box-shadow: 0 10px 34px rgba(99, 102, 241, .5);
}
.tel-bouton .pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(129, 140, 248, .7);
  animation: onde 2.2s ease-out infinite;
}
@keyframes onde {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(1.55); opacity: 0; }
}
.tel-carte-gps {
  position: relative; height: 92px; border-radius: 14px; overflow: hidden;
  background: #0c1322; border: 1px solid rgba(255,255,255,.07);
}
.gps-grille {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, .1) 1px, transparent 1px);
  background-size: 22px 22px;
}
.gps-point {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: #22d3ee; box-shadow: 0 0 14px #22d3ee;
}
.gps-onde {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(34, 211, 238, .6);
  animation: onde 2s ease-out infinite;
}
.carte-heures {
  right: -4%; bottom: 30px; padding: 16px 18px; width: 210px;
  animation: flotte-carte 6.5s ease-in-out infinite;
}
.carte-heures b { font-size: 13.5px; font-family: var(--police-titre); display: block; margin-bottom: 9px; }
.carte-heures small { color: var(--texte-doux); font-size: 11.5px; }
.heures-barre { height: 8px; border-radius: 5px; background: rgba(255,255,255,.09); overflow: hidden; margin-bottom: 7px; }
.heures-rempli { width: 0; height: 100%; border-radius: 5px; background: var(--degrade); transition: width 1.6s cubic-bezier(.2, .8, .3, 1); }
.visible .heures-rempli { width: 81%; }

/* Maquette gestion / automatisation */
.gestion-mock { padding: 26px 22px; }
.flux { display: flex; flex-direction: column; gap: 0; }
.flux-etape {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 13px 16px;
}
.flux-etape b { display: block; font-size: 14px; font-family: var(--police-titre); }
.flux-etape small { color: var(--texte-doux); font-size: 12px; }
.flux-icone {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(99, 102, 241, .14);
  display: grid; place-items: center; font-size: 18px;
}
.flux-ok { border-color: rgba(74, 222, 128, .35); background: rgba(74, 222, 128, .07); }
.flux-lien { width: 2px; height: 26px; background: rgba(255,255,255,.12); margin-left: 35px; position: relative; overflow: hidden; }
.flux-anim {
  position: absolute; left: 0; top: -8px; width: 100%; height: 8px;
  background: var(--accent-2); border-radius: 3px;
  animation: coule 2.4s linear infinite;
}
.flux-lien:nth-of-type(4) .flux-anim { animation-delay: .8s; }
.flux-lien:nth-of-type(6) .flux-anim { animation-delay: 1.6s; }
@keyframes coule { to { top: 30px; } }

/* ============ Réseaux sociaux ============ */
.grille-reseaux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 70px; }
.carte-reseau {
  background: var(--carte); border: 1px solid var(--carte-bord);
  border-radius: var(--rayon); padding: 36px 28px; text-align: center;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.carte-reseau:hover { transform: translateY(-8px); }
.rs-facebook:hover  { border-color: rgba(59, 130, 246, .5);  box-shadow: 0 18px 50px rgba(59, 130, 246, .18); }
.rs-instagram:hover { border-color: rgba(236, 72, 153, .5);  box-shadow: 0 18px 50px rgba(236, 72, 153, .18); }
.rs-tiktok:hover    { border-color: rgba(34, 211, 238, .5);  box-shadow: 0 18px 50px rgba(34, 211, 238, .18); }
.rs-icone {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 20px;
  transition: transform .35s ease;
}
.carte-reseau:hover .rs-icone { transform: scale(1.12); }
.rs-facebook .rs-icone  { background: rgba(59, 130, 246, .15);  color: #60a5fa; }
.rs-instagram .rs-icone { background: linear-gradient(45deg, rgba(245, 158, 11, .18), rgba(236, 72, 153, .18), rgba(168, 85, 247, .18)); color: #f472b6; }
.rs-tiktok .rs-icone    { background: rgba(34, 211, 238, .13);  color: #67e8f9; }
.carte-reseau h3 { font-size: 20px; margin-bottom: 10px; }
.carte-reseau p { color: var(--texte-doux); font-size: 14.5px; margin-bottom: 20px; }
.rs-compteur { font-family: var(--police-titre); font-size: 26px; font-weight: 800; }
.rs-compteur small { display: block; font-size: 12.5px; color: var(--texte-doux); font-weight: 500; font-family: var(--police-texte); }

.bandeau-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  background: linear-gradient(120deg, rgba(99, 102, 241, .16), rgba(34, 211, 238, .1));
  border: 1px solid rgba(129, 140, 248, .3);
  border-radius: 24px; padding: 44px 48px;
  position: relative; overflow: hidden;
}
.bandeau-cta::before {
  content: ''; position: absolute; top: -60%; left: -20%;
  width: 60%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.06), transparent);
  transform: rotate(20deg);
  animation: balaie 5s ease-in-out infinite;
}
@keyframes balaie { 0% { left: -40%; } 60%, 100% { left: 120%; } }
.bandeau-cta h3 { font-size: 24px; margin-bottom: 8px; }
.bandeau-cta p { color: var(--texte-doux); }

/* ============ Contact / Soumission ============ */
.grille-contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-infos h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin-bottom: 16px; }
.contact-infos > p { color: var(--texte-doux); margin-bottom: 30px; }
.contact-carte {
  background: var(--carte); border: 1px solid var(--carte-bord);
  border-radius: var(--rayon); padding: 10px 24px; margin-bottom: 26px;
}
.contact-ligne {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-ligne:last-child { border-bottom: none; }
.contact-icone {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(99, 102, 241, .14); color: #818cf8;
  display: grid; place-items: center;
}
.contact-ligne small { display: block; color: var(--texte-doux); font-size: 12.5px; }
.contact-ligne a, .contact-ligne span:not(.contact-icone) { font-weight: 600; font-size: 15.5px; }
.contact-ligne a:hover { color: var(--accent-2); }
.promesses { list-style: none; }
.promesses li { color: var(--texte-doux); margin-bottom: 9px; font-size: 14.5px; }

.contact-form {
  background: var(--carte); border: 1px solid var(--carte-bord);
  border-radius: 22px; padding: 38px;
}
.form-rangee { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.champ { margin-bottom: 18px; }
.champ label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--texte); }
.champ input, .champ select, .champ textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; color: var(--texte);
  font-family: var(--police-texte); font-size: 15px;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.champ input::placeholder, .champ textarea::placeholder { color: rgba(154, 163, 184, .55); }
.champ select { appearance: none; cursor: pointer; }
.champ select option { background: #10152a; color: var(--texte); }
.champ input:focus, .champ select:focus, .champ textarea:focus {
  outline: none; border-color: var(--accent-1);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, .18);
  background: rgba(255,255,255,.07);
}
.champ textarea { resize: vertical; min-height: 120px; }
.champ-cache { position: absolute; left: -9999px; opacity: 0; height: 0; }

.alerte { border-radius: 14px; padding: 16px 20px; margin-bottom: 22px; font-size: 15px; }
.alerte-succes { background: rgba(74, 222, 128, .1); border: 1px solid rgba(74, 222, 128, .4); }
.alerte-erreur { background: rgba(248, 113, 113, .1); border: 1px solid rgba(248, 113, 113, .4); }
.alerte a { text-decoration: underline; }

/* ============ Pied de page ============ */
.pied { padding-top: 70px; }
.pied-int {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
}
.pied-marque p { color: var(--texte-doux); font-size: 14.5px; margin-top: 16px; max-width: 300px; }
.pied-col h4 { font-size: 15px; margin-bottom: 16px; }
.pied-col a, .pied-col span { display: block; color: var(--texte-doux); font-size: 14.5px; margin-bottom: 10px; transition: color .25s; }
.pied-col a:hover { color: var(--accent-2); }
.pied-bas { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; }
.pied-bas p { color: var(--texte-doux); font-size: 13.5px; text-align: center; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero-int { grid-template-columns: 1fr; gap: 40px; }
  .hero-visuel { display: none; }
  .grille-services { grid-template-columns: repeat(2, 1fr); }
  .projet { grid-template-columns: 1fr; gap: 36px; }
  .projet-inverse .projet-visuel { order: 1; }
  .projet-inverse .projet-texte { order: 2; }
  .grille-reseaux { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; margin-bottom: 60px; }
  .grille-contact { grid-template-columns: 1fr; gap: 44px; }
  .pied-int { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .burger { display: block; z-index: 110; }
  .nav-liens {
    position: fixed; inset: 0;
    background: rgba(6, 8, 15, .97);
    backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center;
    gap: 30px; font-size: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
  }
  .nav-liens.ouvert { opacity: 1; pointer-events: auto; }
  .nav-liens a:not(.btn) { font-size: 19px; }
  .hero { padding-top: 120px; }
  .hero-stats { gap: 30px; }
  .section { padding: 80px 0; }
  .grille-services { grid-template-columns: 1fr; }
  .form-rangee { grid-template-columns: 1fr; gap: 0; }
  .bandeau-cta { flex-direction: column; text-align: center; padding: 36px 26px; }
  .contact-form { padding: 26px 20px; }
  .pied-int { grid-template-columns: 1fr; gap: 28px; }
  .carte-heures { display: none; }
}

/* Accessibilité : réduire les animations si demandé */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
