/* ================================================================
   PropulsWebServices — Dark Premium 2026
   ================================================================ */

/* ─── 1. RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: none; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; cursor: none; }

/* ─── 2. VARIABLES ────────────────────────────────────────────── */
:root {
  --bg:           #080b14;
  --bg-alt:       #0d1220;
  --bg-card:      rgba(255,255,255,.035);
  --bg-card-hover:rgba(255,255,255,.06);
  --border:       rgba(255,255,255,.07);
  --border-hover: rgba(255,255,255,.18);

  --primary:      #5b8cff;
  --primary-dark: #4070e8;
  --accent:       #9b66f8;
  --cyan:         #38d9f5;
  --green:        #34d399;
  --amber:        #fbbf24;
  --pink:         #f472b6;

  --text:         #dde2f0;
  --text-muted:   #6b7a9a;
  --text-dim:     #3a4460;
  --white:        #ffffff;

  --gradient:     linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-text:linear-gradient(135deg, #7fb3ff 0%, #c084fc 100%);

  --glow-sm:      0 0 24px rgba(91,140,255,.2);
  --glow:         0 0 48px rgba(91,140,255,.25);
  --glow-lg:      0 0 80px rgba(91,140,255,.35);
  --glow-accent:  0 0 48px rgba(155,102,248,.3);

  --shadow-sm:    0 1px 3px rgba(0,0,0,.4);
  --shadow:       0 4px 24px rgba(0,0,0,.5);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.6);

  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-full:  9999px;

  --transition:   all .2s ease;
  --transition-slow: all .35s ease;
}

/* ─── 3. CUSTOM CURSOR ────────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, background .15s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(91,140,255,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, border-color .25s ease, transform .08s linear;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 52px; height: 52px; border-color: var(--accent); }

/* ─── 4. LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

/* ─── 5. TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--white); }

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -.03em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -.02em; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.0625rem; }

p { color: var(--text-muted); line-height: 1.75; }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-lg { font-size: 1.125rem; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .8125rem; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ─── 6. GLASS CARD ───────────────────────────────────────────── */
.glass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ─── 7. BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--glow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--white);
  background: rgba(91,140,255,.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: .875rem; }
.btn svg { flex-shrink: 0; }

/* ─── 8. BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(91,140,255,.12);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1px solid rgba(91,140,255,.2);
}

/* ─── 9. CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: var(--transition-slow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.card-link { display: block; }
.card-link:hover .card-arrow { gap: 10px; }
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: .875rem;
  font-weight: 600;
  transition: gap .2s ease;
}

/* ─── 10. HEADER / NAV ────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(8,11,20,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
  box-shadow: 0 1px 32px rgba(0,0,0,.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--gradient);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--glow-sm);
  transition: box-shadow .2s;
}
.logo:hover .logo-icon { box-shadow: var(--glow); }
.logo-text span { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--primary); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(8,11,20,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.mobile-menu .nav-links a {
  display: block;
  padding: 14px 16px;
  font-size: 1.0625rem;
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid transparent;
}
.mobile-menu .nav-links a:hover {
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--white);
}
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ─── 11. HERO ────────────────────────────────────────────────── */
.hero {
  padding: 152px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Particle canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: .45;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(91,140,255,.5) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(155,102,248,.4) 0%, transparent 70%);
}
.hero-orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(56,217,245,.2) 0%, transparent 70%);
}

.hero .container { position: relative; z-index: 1; }
.hero-badge { margin-bottom: 28px; }

.hero-title {
  max-width: 780px;
  margin-bottom: 24px;
}

.hero-desc {
  max-width: 580px;
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

/* Stats compteurs */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  max-width: 680px;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label { font-size: .8125rem; color: var(--text-muted); font-weight: 500; }

/* ─── 12. SERVICES GRID ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card { cursor: none; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.service-card h3 { margin-bottom: 10px; color: var(--white); }
.service-card p { font-size: .9rem; margin-bottom: 18px; line-height: 1.65; }

.icon-blue   { background: rgba(91,140,255,.15); color: var(--primary); }
.icon-violet { background: rgba(155,102,248,.15); color: var(--accent); }
.icon-green  { background: rgba(52,211,153,.15); color: var(--green); }
.icon-amber  { background: rgba(251,191,36,.12); color: var(--amber); }
.icon-pink   { background: rgba(244,114,182,.12); color: var(--pink); }
.icon-cyan   { background: rgba(56,217,245,.12); color: var(--cyan); }

/* ─── 12b. SPLIT LAYOUT (text + cards, responsive) ───────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ─── 13. AVANTAGES ───────────────────────────────────────────── */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.advantage-card .adv-icon {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: var(--glow-sm);
}
.advantage-card h3 { margin-bottom: 6px; font-size: 1rem; color: var(--white); }
.advantage-card p { font-size: .9rem; }

/* ─── 14. ABOUT TEASER ────────────────────────────────────────── */
.about-card {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow);
}
.about-card::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -150px; right: -150px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}
.about-card::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  bottom: -80px; left: 40%;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-badge-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.about-card h2 { color: #fff; margin-bottom: 16px; }
.about-card p { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.about-list { display: flex; flex-direction: column; gap: 12px; }
.about-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.about-list-item svg { color: #fff; flex-shrink: 0; }

/* ─── 15. TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card { display: flex; flex-direction: column; }
.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.quote { flex: 1; font-size: .9375rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.t-name { font-size: .875rem; font-weight: 600; color: var(--white); }
.t-role { font-size: .8125rem; color: var(--text-muted); }

/* ─── 16. FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:has(.faq-question.open) { border-color: rgba(91,140,255,.3); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--white); }
.faq-question.open { color: var(--primary); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--text-muted);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition-slow);
  text-decoration: none;
  backdrop-filter: blur(12px);
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.blog-card-img {
  height: 192px;
  background: var(--gradient);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,11,20,.3);
}
.blog-card-cat {
  position: relative;
  z-index: 1;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.2);
}

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.45; transition: color .2s; color: var(--white); }
.blog-card:hover h3 { color: var(--primary); }
.blog-card p { font-size: .875rem; line-height: 1.65; color: var(--text-muted); flex: 1; margin-bottom: 16px; }

/* Article complet */
.article-hero {
  padding: 144px 0 52px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  transition: color .2s;
}
.article-back:hover { color: var(--primary); }
.article-metas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.article-meta-item { display: flex; align-items: center; gap: 5px; font-size: .8125rem; color: var(--text-muted); }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 48px 0 80px;
}
.article-cover {
  height: 320px;
  border-radius: var(--radius-xl);
  background: var(--gradient);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow);
}
.article-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,11,20,.25);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.author-name { font-size: .875rem; font-weight: 600; color: var(--white); }
.author-role { font-size: .8125rem; color: var(--text-muted); }

.article-content { line-height: 1.85; }
.article-content h2 { font-size: 1.5rem; margin: 36px 0 14px; color: var(--white); }
.article-content h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--text); }
.article-content h4 { font-size: 1rem; margin: 18px 0 8px; color: var(--text); font-weight: 600; }
.article-content p { margin-bottom: 18px; color: var(--text-muted); }
.article-content ul, .article-content ol { margin: 16px 0 18px 20px; color: var(--text-muted); }
.article-content li { margin-bottom: 8px; line-height: 1.7; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content strong { color: var(--white); font-weight: 600; }

.article-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-tags p { font-size: .875rem; font-weight: 500; margin-bottom: 10px; color: var(--text); }
.tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 4px 12px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-full); font-size: .8125rem; color: var(--text-muted); }

.article-cta {
  margin-top: 40px;
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: #fff;
  box-shadow: var(--glow);
}
.article-cta h3 { color: #fff; margin-bottom: 10px; font-size: 1.25rem; }
.article-cta p { color: rgba(255,255,255,.8); margin-bottom: 20px; font-size: .9375rem; }

.article-sidebar { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px; }
.sidebar-title { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 16px; }
.sidebar-cta { background: var(--gradient); border: none; box-shadow: var(--glow-sm); }
.sidebar-cta .sidebar-title { color: rgba(255,255,255,.7); }
.sidebar-cta p { color: rgba(255,255,255,.85); font-size: .875rem; margin-bottom: 16px; }
.sidebar-related { display: flex; flex-direction: column; gap: 16px; }
.related-item { display: flex; flex-direction: column; gap: 3px; }
.related-cat { font-size: .8125rem; font-weight: 600; color: var(--primary); }
.related-title { font-size: .875rem; font-weight: 500; color: var(--text); line-height: 1.4; transition: color .2s; }
.related-item:hover .related-title { color: var(--primary); }
.related-read { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* ─── 17b. ARTICLE SHARE ──────────────────────────────────────── */
.article-share { margin: 32px 0; padding: 22px 26px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); }
.share-label { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 14px; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 100px; font-size: .8125rem; font-weight: 600; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: opacity .2s, transform .15s; font-family: inherit; line-height: 1; }
.share-btn:hover { opacity: .82; transform: translateY(-1px); }
.share-twitter { background: #000; color: #fff; border-color: #333; }
.share-linkedin { background: #0a66c2; color: #fff; }
.share-whatsapp { background: #25d366; color: #fff; }
.share-copy { background: var(--bg-card); color: var(--text); border-color: var(--border); }
.share-email { background: rgba(255,255,255,.06); color: var(--text); border-color: var(--border); }
.share-native { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; border-color: transparent; }
@media (max-width: 480px) { .share-btn { padding: 8px 13px; font-size: .75rem; } }

/* ─── 18. CONTACT FORM ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.form-title { margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.required { color: var(--primary); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91,140,255,.15);
}
.form-select { appearance: none; cursor: none; }
.form-select option { background: #0d1220; color: var(--white); }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-note { font-size: .8125rem; color: var(--text-muted); margin-top: 16px; margin-bottom: 20px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card, .info-card-blue { padding: 24px; border-radius: var(--radius-xl); }
.info-card { background: var(--bg-card); border: 1px solid var(--border); }
.info-card-blue { background: var(--gradient); color: #fff; box-shadow: var(--glow-sm); }
.info-card-title { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 16px; }
.info-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 38px; height: 38px;
  background: rgba(91,140,255,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.info-label { font-size: .875rem; font-weight: 600; color: var(--white); }
.info-value { font-size: .8125rem; color: var(--text-muted); }
.info-card-blue svg { color: rgba(255,255,255,.7); margin-bottom: 12px; }
.info-card-blue h3 { color: #fff; margin-bottom: 8px; font-size: 1.0625rem; }
.info-card-blue p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 20px; }
.reasons-list { display: flex; flex-direction: column; gap: 10px; }
.reason-item { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: rgba(255,255,255,.8); }
.reason-item svg { color: rgba(255,255,255,.9); flex-shrink: 0; margin-top: 2px; }

.form-success {
  background: rgba(52,211,153,.08);
  border: 1px solid rgba(52,211,153,.25);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  display: none;
}
.form-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(52,211,153,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
}
.form-success h2 { color: var(--white); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); margin-bottom: 28px; }
.form-success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── 19. À PROPOS ────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p { margin-bottom: 18px; color: var(--text-muted); line-height: 1.8; }
.about-text strong { color: var(--white); }
.profile-card {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: var(--glow);
}
.profile-avatar {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 800;
  color: #fff; margin-bottom: 16px;
}
.profile-name { color: #fff; font-size: 1.25rem; margin-bottom: 4px; }
.profile-title { color: rgba(255,255,255,.7); font-size: .875rem; margin-bottom: 20px; }
.profile-details { display: flex; flex-direction: column; gap: 8px; }
.profile-detail { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: rgba(255,255,255,.8); }
.profile-detail svg { flex-shrink: 0; }
.differentiators { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px; }
.diff-title { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 16px; }
.diff-list { display: flex; flex-direction: column; gap: 10px; }
.diff-item, .diff-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; color: var(--text-muted); }
.diff-item svg, .diff-list li svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card .value-icon {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 14px;
  box-shadow: var(--glow-sm);
}
.value-card h3 { margin-bottom: 8px; color: var(--white); }

.skills-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.skill-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.skill-card {}
.skill-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.skill-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.skill-header h3 { font-size: 1rem; margin: 0; color: var(--white); }
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-tags li { list-style: none; }
.skill-tag, .skill-tags li {
  font-size: .8125rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  color: var(--text-muted);
  font-weight: 500;
}

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-slow);
}
.process-step:hover { border-color: rgba(91,140,255,.3); transform: translateY(-3px); }
.process-icon { display: flex; align-items: center; justify-content: center; color: var(--primary); margin: 0 auto 14px; }
.step-number {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.25rem; font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: var(--glow-sm);
}
.process-step h3 { margin-bottom: 8px; color: var(--white); }
.process-step p { font-size: .875rem; }

/* ─── 20. SERVICES (page détaillée) ──────────────────────────── */
.service-detail {
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.service-detail .service-icon { margin-bottom: 20px; }
.service-detail h2 { margin-bottom: 6px; color: var(--white); }
.service-tagline { color: var(--primary); font-weight: 600; margin-bottom: 16px; font-size: 1rem !important; }
.service-desc { line-height: 1.75; margin-bottom: 24px; }
.service-prices { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.price-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.included-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.included-title { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 16px; }
.included-list { display: flex; flex-direction: column; gap: 10px; }
.included-item { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text-muted); }
.included-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ─── 21. FOOTER ──────────────────────────────────────────────── */
.footer { background: #040609; color: var(--text-muted); padding: 80px 0 0; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; color: var(--text-muted); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact span {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; color: var(--text-muted);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-col-title { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: var(--text-muted); transition: color .2s; display: flex; align-items: center; gap: 4px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .8rem; color: var(--text-muted); transition: color .2s; }
.footer-legal a:hover { color: var(--text); }

/* ─── 22. PAGE HERO (autres pages) ───────────────────────────── */
.page-hero {
  padding: 152px 0 80px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero .badge { margin-bottom: 20px; }
.page-hero h1 { max-width: 680px; margin-bottom: 16px; }
.page-hero p { max-width: 560px; font-size: 1.1rem; }

/* ─── 23. CTA SECTION ─────────────────────────────────────────── */
.cta-section { text-align: center; }
.cta-section h2 { max-width: 520px; margin: 0 auto 16px; }
.cta-section p { max-width: 480px; margin: 0 auto 32px; font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── 24. BLOG (page liste) ───────────────────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 56px;
  transition: var(--transition-slow);
  text-decoration: none;
  color: inherit;
}
.blog-featured:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--glow-sm); }
.blog-featured-img {
  background: var(--gradient);
  min-height: 280px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,11,20,.3);
}
.blog-featured-img .blog-card-cat { position: relative; z-index: 1; }
.blog-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-card);
}
.blog-featured-body .blog-card-meta { margin-bottom: 12px; }
.blog-featured-body h2 { font-size: 1.5rem; margin-bottom: 12px; line-height: 1.35; transition: color .2s; color: var(--white); }
.blog-featured:hover .blog-featured-body h2 { color: var(--primary); }
.blog-featured-body p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

/* ─── 25. PAGE LÉGALE ─────────────────────────────────────────── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 144px 24px 80px;
}
.legal-content h1 { margin-bottom: 40px; }
.legal-content h2 { font-size: 1.25rem; margin: 36px 0 10px; color: var(--white); }
.legal-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { margin: 10px 0 16px 20px; }
.legal-content li { color: var(--text-muted); margin-bottom: 6px; list-style: disc; }

/* ─── 26. PAGE 404 ────────────────────────────────────────────── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  padding: 80px 24px;
}
.error-code {
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.page-404 h1 { margin-bottom: 12px; }
.page-404 p { font-size: 1.0625rem; max-width: 400px; margin: 0 auto 32px; }
.page-404 .cta-actions { justify-content: center; }

/* ─── 27. ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { opacity: .45; }
  50%       { opacity: .7; }
}

.hero-orb { animation: glowPulse 6s ease-in-out infinite; }
.hero-orb-2 { animation-delay: 3s; }

.anim { opacity: 0; }
.anim.visible { animation: fadeUp .65s cubic-bezier(.22,1,.36,1) forwards; }
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .2s; }
.anim-d3 { animation-delay: .3s; }
.anim-d4 { animation-delay: .4s; }

/* ─── 28. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card { padding: 40px; }
  .about-card-grid { grid-template-columns: 1fr; gap: 28px; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 200px; }
  .hero-stats { max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
  .hero { padding: 128px 0 72px; }
  .page-hero { padding: 128px 0 56px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .split-layout { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .article-cover { height: 200px; }
  .about-card { padding: 28px 20px; }
  .hero-stats { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  #cursor-dot, #cursor-ring { display: none; }
  body, a, button, input, textarea, select { cursor: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .form-success-actions { flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
}
