/* =============================================
   H TRACK — STYLESHEET
   ============================================= */

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

:root {
  --bg:          #050510;
  --bg2:         #0a0a1a;
  --card:        #12122a;
  --card-border: rgba(99,102,241,.15);
  --purple:      #6366f1;
  --purple-light:#818cf8;
  --violet:      #8b5cf6;
  --green:       #10b981;
  --blue:        #3b82f6;
  --cyan:        #06b6d4;
  --orange:      #f59e0b;
  --text:        #e2e8f0;
  --muted:       #94a3b8;
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== UTILS ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--violet), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.3);
  color: var(--purple-light);
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; color: var(--white); }
.section-sub { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,5,16,.7); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99,102,241,.08);
  transition: all .3s;
}
.navbar.scrolled { background: rgba(5,5,16,.95); border-bottom-color: rgba(99,102,241,.2); }
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px;
}
.logo { text-decoration: none; font-size: 22px; font-weight: 900; letter-spacing: -.5px; }
.logo-h { color: var(--purple); }
.logo-track { color: var(--white); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--purple); color: var(--white); text-decoration: none;
  padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all .2s;
}
.nav-cta:hover { background: var(--purple-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(99,102,241,.4); }
.lang-toggle { display: flex; align-items: center; gap: 4px; margin-right: 4px; }
.lang-btn { background: none; border: none; color: var(--muted); font-size: 13px; font-weight: 700; cursor: pointer; padding: 5px 9px; border-radius: 6px; transition: all .2s; font-family: 'Inter', sans-serif; letter-spacing: .04em; }
.lang-btn.active { color: var(--white); background: rgba(99,102,241,.18); }
.lang-btn:hover { color: var(--white); }
.lang-sep { color: rgba(148,163,184,.25); font-size: 12px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--muted); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column; padding: 16px 24px 24px;
  border-top: 1px solid rgba(99,102,241,.1);
  background: rgba(5,5,16,.98);
}
.mobile-menu.open { display: flex; }
.mob-link { padding: 12px 0; color: var(--muted); text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.05); }
.mob-link:hover { color: var(--white); }
.mob-cta { margin-top: 16px; text-align: center; background: var(--purple); color: var(--white); text-decoration: none; padding: 12px; border-radius: 8px; font-weight: 600; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; max-width: 1200px; margin: 0 auto;
  padding: 120px 24px 80px; position: relative;
}
.hero-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .22;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 600px; height: 600px; background: var(--purple); top: -200px; left: -200px; }
.orb2 { width: 400px; height: 400px; background: var(--violet); bottom: -100px; right: -100px; animation-delay: -4s; }
.orb3 { width: 300px; height: 300px; background: #3b82f6; top: 50%; left: 50%; animation-delay: -2s; }
@keyframes float { 0%,100%{ transform:translate(0,0) scale(1); } 33%{ transform:translate(30px,-30px) scale(1.05); } 66%{ transform:translate(-20px,20px) scale(.95); } }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(99,102,241,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content { flex: 1; max-width: 580px; position: relative; z-index: 1; }
.hero-visual { flex: 0 0 420px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.25);
  color: var(--purple-light); font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.6; transform:scale(1.4); } }
.hero-title { font-size: clamp(34px, 5vw, 60px); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.hero-subtitle { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--violet));
  color: var(--white); text-decoration: none;
  padding: 13px 26px; border-radius: 10px; font-weight: 700; font-size: 15px;
  transition: all .2s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99,102,241,.45); }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform .2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-secondary {
  background: transparent; color: var(--text); text-decoration: none;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 15px;
  border: 1px solid rgba(255,255,255,.12); transition: all .2s;
}
.btn-secondary:hover { border-color: var(--purple); color: var(--purple-light); }

/* ===== DASHBOARD CARD ===== */
.dashboard-card {
  background: rgba(18,18,42,.9);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 16px; padding: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }
.dash-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.dash-dots { display: flex; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }
.dash-title { font-size: 12px; font-weight: 600; color: var(--muted); margin-left: auto; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.metric { background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.1); border-radius: 8px; padding: 12px; }
.metric-label { display: block; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.metric-val { font-size: 18px; font-weight: 800; }
.green-text { color: var(--green); }
.blue-text { color: var(--blue); }
.purple-text { color: var(--purple-light); }
.dash-chart { margin-bottom: 16px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.bar { flex: 1; background: rgba(99,102,241,.1); border-radius: 4px 4px 0 0; position: relative; overflow: hidden; }
.bar-fill { position: absolute; inset: 0; background: var(--c); border-radius: 4px 4px 0 0; animation: growBar 1.2s ease-out both; }
@keyframes growBar { from{ transform:scaleY(0); transform-origin:bottom; } to{ transform:scaleY(1); } }
.dash-tags { display: flex; gap: 8px; }
.tag { font-size: 11px; font-weight: 600; padding: 4px 10px; background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.2); color: var(--purple-light); border-radius: 100px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 28px 24px; text-align: center;
  background: rgba(255,255,255,.015);
}
.trust-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tech-pill {
  padding: 7px 18px; border-radius: 100px;
  background: rgba(99,102,241,.06); border: 1px solid rgba(99,102,241,.14);
  font-size: 13px; font-weight: 500; color: var(--muted); transition: all .2s;
}
.tech-pill:hover { background: rgba(99,102,241,.12); border-color: rgba(99,102,241,.3); color: var(--purple-light); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
/* 5e carte prend toute la largeur */
.service-card-wide { grid-column: 1 / -1; }

.service-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 30px; transition: all .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.04), transparent);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(99,102,241,.35); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(99,102,241,.45); background: linear-gradient(135deg, rgba(99,102,241,.07), rgba(139,92,246,.03)); }
.featured-badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  color: #fff; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.icon-blue   { background: rgba(59,130,246,.15); color: var(--blue); }
.icon-purple { background: rgba(99,102,241,.15); color: var(--purple-light); }
.icon-green  { background: rgba(16,185,129,.15); color: var(--green); }
.icon-cyan   { background: rgba(6,182,212,.15);  color: var(--cyan); }
.icon-orange { background: rgba(245,158,11,.15); color: var(--orange); }
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.card-list-row { flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
.card-list li { font-size: 14px; color: var(--muted); padding-left: 18px; position: relative; }
.card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--purple-light); font-weight: 700; }

/* ===== PROCESS ===== */
.process { padding: 80px 0; background: var(--bg2); }
.process-steps {
  display: flex; align-items: flex-start; gap: 16px;
  flex-wrap: wrap; justify-content: center;
}
.step { flex: 1; min-width: 170px; max-width: 220px; text-align: center; padding: 24px; }
.step-num {
  font-size: 44px; font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 12px; line-height: 1;
}
.step h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-arrow { font-size: 22px; color: rgba(99,102,241,.35); align-self: center; padding-top: 4px; flex-shrink: 0; }

/* ===== POUR QUI ===== */
.pourqui { padding: 100px 0; }
.profils-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.profil-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 30px;
  transition: all .3s; display: flex; flex-direction: column; gap: 14px;
}
.profil-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.profil-header { display: flex; align-items: center; gap: 14px; }
.profil-emoji { font-size: 30px; flex-shrink: 0; }
.profil-header h3 { font-size: 17px; font-weight: 700; color: var(--white); }
.profil-pb { font-size: 14px; color: var(--muted); line-height: 1.65; font-style: italic; }
.profil-divider { height: 1px; background: rgba(99,102,241,.12); }
.profil-sol { font-size: 14px; color: var(--muted); line-height: 1.65; }
.profil-sol strong { color: var(--purple-light); font-weight: 600; font-style: normal; }
.profil-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.profil-tags span {
  font-size: 11px; font-weight: 600;
  background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.18);
  color: var(--muted); padding: 4px 11px; border-radius: 100px;
}

/* ===== TARIFS ===== */
.tarifs { padding: 100px 0; background: var(--bg2); }
.tarifs-simple {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.tarifs-left { display: flex; flex-direction: column; gap: 16px; }
.tarifs-left .section-tag { display: inline-block; }
.tarifs-left .section-title { text-align: left; margin-bottom: 0; }
.tarifs-desc { font-size: 15px; color: var(--muted); line-height: 1.75; }
.tarifs-desc strong { color: var(--white); font-weight: 600; }
.tarifs-right { display: flex; flex-direction: column; gap: 14px; }
.tarif-simple-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 22px 24px; transition: all .3s;
}
.tarif-simple-card:hover { border-color: rgba(99,102,241,.3); transform: translateX(4px); }
.tarif-simple-highlight {
  border-color: rgba(99,102,241,.3);
  background: linear-gradient(135deg, rgba(99,102,241,.07), rgba(139,92,246,.03));
}
.tscard-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.tarif-simple-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.tarif-simple-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-left .section-tag { display: inline-block; margin-bottom: 16px; }
.contact-left .section-title { text-align: left; margin-bottom: 14px; }
.contact-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }
.contact-infos { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; align-items: center; gap: 14px; }
.info-icon {
  width: 42px; height: 42px; background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 13px; color: var(--white); }
.contact-info-item span { font-size: 13px; color: var(--muted); }
.contact-form {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  color: var(--white); border-radius: 8px; padding: 11px 14px; font-size: 14px;
  font-family: 'Inter', sans-serif; transition: all .2s; outline: none; resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148,163,184,.4); }
.form-group select option { background: #1a1a3a; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ===== QUI SUIS-JE ===== */
.quisuisje { padding: 100px 0; }
.qsj-grid { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: center; }
.qsj-avatar { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.avatar-placeholder {
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(99,102,241,.08); border: 2px dashed rgba(99,102,241,.3);
  display: flex; align-items: center; justify-content: center;
}
.avatar-placeholder svg { width: 72px; height: 72px; color: rgba(99,102,241,.4); }
.qsj-badge {
  font-size: 12px; font-weight: 600; color: var(--purple-light);
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.25);
  padding: 5px 14px; border-radius: 100px; text-align: center;
}
.qsj-content .section-tag { display: inline-block; margin-bottom: 16px; }
.qsj-text { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.qsj-links { margin-top: 20px; }
.qsj-linkedin {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(10,102,194,.12); border: 1px solid rgba(10,102,194,.3);
  color: #60a5fa; text-decoration: none;
  padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: all .2s;
}
.qsj-linkedin:hover { background: rgba(10,102,194,.22); transform: translateY(-2px); }
@media (max-width: 900px) {
  .qsj-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .qsj-content .section-title { text-align: center !important; }
  .qsj-links { display: flex; justify-content: center; }
}

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid rgba(255,255,255,.05); padding: 44px 24px 24px; }
.footer-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-top { margin-bottom: 20px; }
.footer-tagline { font-size: 14px; color: var(--muted); margin-top: 8px; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 14px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--purple-light); }
.footer-legal { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-legal a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-legal a:hover { color: var(--white); }
.footer-legal span { color: rgba(148,163,184,.3); font-size: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(148,163,184,.35); }

/* ===== GALLERY / REALISATIONS ===== */
.realisations { padding: 100px 0; background: var(--bg2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.gallery-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-img-frame {
  border-radius: 14px;
  border: 1px solid rgba(99,102,241,.3);
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 4px rgba(99,102,241,.06);
  overflow: hidden;
  background: #edf0f8;
  transition: box-shadow .3s, border-color .3s;
  line-height: 0;
}
.gallery-card:hover .gallery-img-frame {
  border-color: rgba(99,102,241,.55);
  box-shadow: 0 20px 64px rgba(99,102,241,.2), 0 0 0 4px rgba(99,102,241,.1);
}
.gallery-img-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-caption {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 2px;
}
.gallery-tag {
  flex-shrink: 0;
  display: inline-block;
  font-size: 11px; font-weight: 700;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  color: var(--purple-light);
  padding: 4px 12px; border-radius: 100px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.gallery-caption-text h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.gallery-caption-text p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.gallery-note {
  text-align: center;
  font-size: 12px; color: rgba(148,163,184,.45);
  margin-top: 4px; font-style: italic;
}

/* ===== AVANT / APRES dans Pour qui ===== */
.profil-before-after {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(99,102,241,.05);
  border: 1px solid rgba(99,102,241,.12);
  border-radius: 10px; padding: 14px 16px;
  margin-top: 4px;
}
.pba-side { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pba-label {
  font-size: 10px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 4px;
  width: fit-content;
}
.pba-before .pba-label { background: rgba(239,68,68,.12); color: #f87171; }
.pba-after  .pba-label { background: rgba(16,185,129,.12); color: var(--green); }
.pba-side span:last-child { font-size: 12px; color: var(--muted); line-height: 1.5; }
.pba-arrow {
  font-size: 16px; color: rgba(99,102,241,.4);
  align-self: center; flex-shrink: 0; padding-top: 14px;
}

/* ===== TARIF PRICE BADGE ===== */
.tarif-price {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--purple-light);
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  padding: 3px 12px; border-radius: 100px;
  margin-top: 6px;
}
.tarif-free {
  color: var(--green);
  background: rgba(16,185,129,.1);
  border-color: rgba(16,185,129,.25);
}

/* ===== NDA MENTION ===== */
.nda-strip {
  display: flex; align-items: center; gap: 14px;
  background: rgba(99,102,241,.06);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 12px; padding: 18px 24px;
  margin-top: 32px;
}
.nda-strip .nda-icon { font-size: 24px; flex-shrink: 0; }
.nda-strip p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.nda-strip strong { color: var(--white); font-weight: 600; }

/* ===== CONTACT EMAIL CTA ===== */
.contact-quick {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.contact-quick-title {
  font-size: 13px; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 4px;
}
.btn-email {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.3);
  color: var(--purple-light); text-decoration: none;
  padding: 12px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600; transition: all .2s;
}
.btn-email:hover {
  background: rgba(99,102,241,.2);
  border-color: var(--purple); color: var(--white);
  transform: translateY(-2px);
}
.btn-calendly {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  color: var(--green); text-decoration: none;
  padding: 12px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600; transition: all .2s;
}
.btn-calendly:hover {
  background: rgba(16,185,129,.15);
  border-color: var(--green);
  transform: translateY(-2px);
}
.contact-or {
  text-align: center; font-size: 12px;
  color: rgba(148,163,184,.4); letter-spacing: .05em;
  text-transform: uppercase; margin: 4px 0;
}

/* ===== DIFFERENCE STRIP (homepage) ===== */
.diff-strip {
  padding: 64px 24px;
  background: linear-gradient(135deg, rgba(99,102,241,.05), rgba(139,92,246,.03));
  border-top: 1px solid rgba(99,102,241,.1);
}
.diff-inner {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px;
}
.diff-item {
  text-align: center; padding: 20px;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 14px; transition: all .3s;
}
.diff-item:hover { border-color: rgba(99,102,241,.3); transform: translateY(-3px); }
.diff-icon { font-size: 28px; margin-bottom: 12px; }
.diff-item h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.diff-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 700px) { .diff-inner { grid-template-columns: 1fr; } }

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.page-active { color: var(--white); }
.mob-link.page-active { color: var(--white); }

/* ===== SERVICES MINI (homepage teaser) ===== */
.services-mini { padding: 100px 0; }
.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-mini-wide { grid-column: 1 / -1; }
.service-mini-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 26px 28px; transition: all .3s;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
}
.service-mini-card:hover {
  transform: translateY(-4px); border-color: rgba(99,102,241,.35);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.service-mini-card h3 { font-size: 16px; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 10px; }
.service-mini-card p { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }
.mini-link { font-size: 13px; color: var(--purple-light); font-weight: 600; transition: gap .2s; display: inline-flex; align-items: center; gap: 5px; }
.service-mini-card:hover .mini-link { gap: 8px; }
.services-mini-cta { text-align: center; margin-top: 40px; }

/* ===== CTA BAND ===== */
.cta-band {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(139,92,246,.04));
  border-top: 1px solid rgba(99,102,241,.12);
  border-bottom: 1px solid rgba(99,102,241,.12);
}
.cta-band h2 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-band p { font-size: 16px; color: var(--muted); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ===== PAGE INNER FIRST SECTION ===== */
.page-first-section { padding-top: 130px; }

/* Offset pour ancres sous la navbar fixe */
section[id] { scroll-margin-top: 80px; }

@media (min-width: 1024px) {
  .services-mini-grid { grid-template-columns: repeat(3, 1fr); }
  .service-mini-wide { grid-column: auto; }
}
@media (max-width: 900px) {
  .services-mini-grid { grid-template-columns: 1fr; }
  .service-mini-wide { grid-column: auto; }
}

/* ===== SUCCESS ===== */
.success-msg { display: none; text-align: center; padding: 40px; color: var(--green); font-size: 17px; font-weight: 600; }
.success-msg .check { font-size: 44px; margin-bottom: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tarifs-simple { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-visual { display: none; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-left .section-title { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .profils-grid { grid-template-columns: 1fr; }
  .tarifs-grid { max-width: 100%; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
}
