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

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg, #080a0f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  animation: loader-pulse 1.4s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.92); }
}
.loader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6, #8b5cf6);
  background-size: 200% 100%;
  border-radius: 100px;
  animation: loader-slide 1.2s ease-in-out infinite;
}
@keyframes loader-slide {
  0%   { width: 0%;   background-position: 0% 0%; }
  50%  { width: 80%;  background-position: 100% 0%; }
  100% { width: 100%; background-position: 0% 0%; }
}

/* ===== ACCESSIBILITÉ ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--purple, #8b5cf6);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible global */
:focus-visible {
  outline: 2px solid #a78bfa;
  outline-offset: 3px;
  border-radius: 4px;
}

:root {
  --bg: #080a0f;
  --bg-2: #0d1017;
  --bg-card: #111520;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(139,92,246,0.4);
  --text: #e8eaf0;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --green: #10b981;
  --gradient: linear-gradient(135deg, #8b5cf6, #3b82f6);
  --gradient-text: linear-gradient(135deg, #c084fc, #818cf8, #38bdf8);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 40px rgba(139,92,246,0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--purple-light);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(139,92,246,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(139,92,246,0.5); }
.btn-primary.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

/* ===== NAVBAR ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(8,10,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  height: 72px; display: flex; align-items: center; gap: 40px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 8px; margin-right: auto; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-light);
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn-nav {
  padding: 10px 22px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--purple-light);
  font-size: 0.9rem; font-weight: 600; border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-nav:hover { background: rgba(139,92,246,0.25); border-color: rgba(139,92,246,0.6); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

/* Orbs directly in hero */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.5), transparent 70%);
  top: -150px; left: -200px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.4), transparent 70%);
  top: 10%; right: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(8,145,178,0.3), transparent 70%);
  bottom: 5%; left: 30%;
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

#particles {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-slogan {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeSlideDown 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #10b981; border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.1); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: fadeSlideDown 0.6s 0.1s ease both;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
  animation: fadeSlideDown 0.6s 0.2s ease both;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px;
  animation: fadeSlideDown 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  animation: fadeSlideDown 0.6s 0.4s ease both;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; letter-spacing: -0.03em;
}
.stat span { font-size: 1.4rem; color: var(--purple-light); font-weight: 700; }
.stat p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.browser-mockup {
  background: rgba(17,21,32,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05), 0 0 60px rgba(139,92,246,0.1);
  animation: floatUp 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.browser-bar {
  background: rgba(255,255,255,0.04);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  background: rgba(255,255,255,0.06); border-radius: 6px;
  padding: 4px 16px; font-size: 0.75rem; color: var(--text-muted);
  flex: 1; text-align: center;
}
.browser-content { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

/* Mock hero block */
.mock-hero-block {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(59,130,246,0.1));
  border-radius: 10px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.mock-hero-block::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.mock-hero-text { display: flex; flex-direction: column; gap: 8px; }
.mock-h1 { height: 14px; background: rgba(255,255,255,0.25); border-radius: 4px; width: 80%; }
.mock-h1.short { width: 55%; }
.mock-p { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; width: 90%; margin-top: 4px; }
.mock-p.medium { width: 70%; }
.mock-btn-row { display: flex; gap: 8px; margin-top: 8px; }
.mock-btn-cta { height: 28px; width: 100px; background: rgba(139,92,246,0.5); border-radius: 100px; }
.mock-btn-ghost { height: 28px; width: 80px; background: rgba(255,255,255,0.08); border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); }

.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mock-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.mock-card-icon { width: 20px; height: 20px; background: rgba(139,92,246,0.3); border-radius: 6px; }
.mock-card-line { height: 7px; background: rgba(255,255,255,0.12); border-radius: 3px; }
.mock-card-line.short { width: 60%; }

.floating-badge {
  position: absolute;
  background: rgba(17,21,32,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}
.floating-badge div { display: flex; flex-direction: column; }
.floating-badge span { color: var(--text-muted); font-size: 0.7rem; }
.floating-badge strong { font-weight: 700; font-size: 0.88rem; }

.badge-speed { top: -16px; right: -16px; animation: floatBadge1 5s ease-in-out infinite; }
.badge-mobile { bottom: 40px; left: -24px; animation: floatBadge2 6s ease-in-out infinite; }
.badge-seo { bottom: -16px; right: 20px; animation: floatBadge1 7s 1s ease-in-out infinite; }

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(8px) rotate(1deg); }
}

/* ===== PROMISE STRIP ===== */
.promise-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative; z-index: 1;
}
.promise-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.promise-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-light);
  white-space: nowrap;
}
.promise-item svg { flex-shrink: 0; }
.promise-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.15); flex-shrink: 0;
}
@media (max-width: 768px) {
  .promise-inner { gap: 20px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .promise-dot { display: none; }
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  position: relative; z-index: 1;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.service-card.featured { border-color: rgba(139,92,246,0.2); }
.service-card.featured:hover { border-color: rgba(139,92,246,0.5); }

/* Real photo (when user replaces placeholder) */
.service-img-photo {
  width: 100%; height: 180px;
  object-fit: cover;
  display: block;
}

/* Service image area */
.service-img {
  height: 140px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.service-img-web { background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(59,130,246,0.1)); }
.service-img-seo { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(6,182,212,0.08)); }
.service-img-maint { background: linear-gradient(135deg, rgba(244,114,182,0.12), rgba(139,92,246,0.08)); }
.service-img-host { background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(16,185,129,0.08)); }

.service-img-inner { width: 100%; padding: 16px 20px; }

/* Web mockup in service */
.simg-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 12px; width: 40%; }
.simg-content { display: flex; flex-direction: column; gap: 8px; }
.simg-block { height: 36px; background: rgba(139,92,246,0.2); border-radius: 6px; }
.simg-block.tall { height: 52px; }
.simg-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* SEO chart */
.simg-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 80px; padding: 0 10px;
}
.simg-bar-v {
  flex: 1;
  background: rgba(16,185,129,0.2);
  border-radius: 4px 4px 0 0;
  transition: height 0.3s;
}
.simg-bar-v.active { background: rgba(16,185,129,0.7); }
.simg-rank {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: rgba(16,185,129,0.4);
  letter-spacing: -0.05em;
}

/* Shield */
.simg-shield { display: flex; align-items: center; justify-content: center; flex: 1; }
.simg-dots { display: flex; gap: 6px; justify-content: center; margin-top: 8px; }
.simg-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(244,114,182,0.4); }
.simg-dots span:nth-child(2) { background: rgba(244,114,182,0.7); animation: dotPulse 1.5s 0.2s infinite; }
.simg-dots span:nth-child(3) { background: rgba(244,114,182,0.4); animation: dotPulse 1.5s 0.4s infinite; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Server */
.simg-server {
  display: flex; flex-direction: column; gap: 8px;
  width: 70%; margin: 0 auto;
}
.simg-server-row {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 8px 12px;
  display: flex; align-items: center; gap: 10px;
}
.simg-server-row span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.simg-server-row span.on { background: #10b981; box-shadow: 0 0 6px #10b981; }
.simg-server-row div { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; }

.service-body { padding: 24px 28px; }
.service-icon {
  width: 44px; height: 44px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 600; margin-bottom: 8px;
}
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; margin-bottom: 14px; }
.service-card ul { display: flex; flex-direction: column; gap: 5px; }
.service-card li { font-size: 0.83rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.service-card li::before { content: '→'; position: absolute; left: 0; color: var(--purple-light); }
.service-tag {
  position: absolute; top: 140px; right: 20px;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--purple-light);
  font-size: 0.7rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  transform: translateY(-50%);
}
.service-card.featured { position: relative; }

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg), rgba(139,92,246,0.03), var(--bg));
  position: relative; z-index: 1;
}
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr 80px;
  align-items: center; gap: 32px; padding: 40px 0;
}
.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem; font-weight: 800; letter-spacing: -0.05em;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.35; line-height: 1;
}
.step-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem; font-weight: 600; margin-bottom: 10px;
}
.step-content p { color: var(--text-light); line-height: 1.7; max-width: 480px; }
.step-visual { display: flex; justify-content: flex-end; }
.step-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  transition: background 0.3s, border-color 0.3s;
}
.process-step:hover .step-icon-wrap {
  background: rgba(139,92,246,0.18);
  border-color: rgba(139,92,246,0.4);
}
.process-connector {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin-left: 80px;
}

/* ===== PRICING ===== */
.pricing { padding: 100px 0; position: relative; z-index: 1; background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }

.pricing-tech-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--purple-light);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 5px 10px; border-radius: 100px;
  margin-bottom: 20px;
}
.pricing-tech-tag.alt {
  color: #fbbf24;
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.2);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.pricing-card.popular {
  background: linear-gradient(160deg, rgba(139,92,246,0.12), rgba(59,130,246,0.06));
  border-color: rgba(139,92,246,0.35);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 5px 16px;
  border-radius: 0 0 12px 12px; letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price-currency { font-size: 1.4rem; font-weight: 600; color: var(--text-muted); }
.pricing-desc { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); line-height: 1.5; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-light); }
.pricing-features li svg { width: 16px; height: 16px; flex-shrink: 0; stroke: #34d399; }
.pricing-features li.disabled { opacity: 0.3; }
.pricing-features li.disabled svg { stroke: var(--text-muted); }

.btn-pricing {
  display: block; text-align: center; padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--border); color: var(--text-light);
  transition: all 0.2s;
}
.btn-pricing:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: var(--text); }
.pricing-card.popular .btn-pricing {
  background: var(--gradient); border-color: transparent; color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.35);
}
.pricing-card.popular .btn-pricing:hover { box-shadow: 0 8px 32px rgba(139,92,246,0.5); }

.addons { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; }
.addons h3 { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.addon-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; transition: border-color 0.2s; }
.addon-item:hover { border-color: rgba(255,255,255,0.12); }
.addon-name { font-size: 0.85rem; color: var(--text-light); margin-bottom: 8px; }
.addon-price { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.addon-price span { font-size: 0.72rem; color: var(--text-muted); font-weight: 400; }

/* ===== WHY ===== */
.why { padding: 100px 0; position: relative; z-index: 1; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.why-card:hover::before { opacity: 1; }

.why-icon-custom {
  width: 56px; height: 56px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.why-icon-ring {
  position: absolute; inset: -4px;
  border-radius: 18px;
  border: 1px solid rgba(139,92,246,0.15);
  animation: ringPulse 3s ease-in-out infinite;
}
.why-icon-ring.green { border-color: rgba(52,211,153,0.2); }
.why-icon-ring.blue { border-color: rgba(96,165,250,0.2); }
.why-icon-ring.pink { border-color: rgba(244,114,182,0.2); }
.why-icon-ring.yellow { border-color: rgba(251,191,36,0.2); }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

.why-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; }

.why-metric { display: flex; flex-direction: column; gap: 6px; }
.why-metric-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.why-metric-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  animation: fillBar 1.2s ease both;
}
.why-metric-fill.green { background: linear-gradient(90deg, #10b981, #06b6d4); }
.why-metric-fill.blue { background: linear-gradient(90deg, #3b82f6, #6366f1); }
.why-metric-fill.pink { background: linear-gradient(90deg, #f472b6, #8b5cf6); }
.why-metric-fill.yellow { background: linear-gradient(90deg, #fbbf24, #f97316); }
@keyframes fillBar {
  from { width: 0 !important; }
}
.why-metric span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ===== PREMIER CLIENT ===== */
.first-client { padding: 100px 0; position: relative; z-index: 1; background: var(--bg); }
.first-client-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.first-client-text p { color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.first-client-card {
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(59,130,246,0.06));
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--radius); padding: 36px;
  position: relative;
}
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.first-client-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; background: var(--gradient);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.9rem; display: block; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.first-client-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 24px; padding: 6px 14px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: #34d399;
}
@media (max-width: 768px) {
  .first-client-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== FAQ ===== */
.faq { padding: 100px 0; position: relative; z-index: 1; background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 800px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--text); font-size: 0.95rem; font-weight: 500;
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s; font-family: 'Inter', sans-serif;
}
.faq-q span { font-size: 1.3rem; color: var(--purple-light); font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 200px; }
.faq-a p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; padding: 0 24px 20px; }

/* ===== CTA BAND ===== */
.cta-band {
  padding: 100px 0; position: relative; overflow: hidden;
  z-index: 1; background: var(--bg);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.03em;
}
.cta-content p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 36px; }
.cta-orb-1 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; filter: blur(60px); pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.cta-orb-2 {
  position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
  top: 0; right: 20%;
  border-radius: 50%; filter: blur(40px); pointer-events: none;
}

/* ===== CONTACT ===== */
.contact { padding: 100px 0; position: relative; z-index: 1; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--text-light); margin-bottom: 40px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-light);
  padding: 14px 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, color 0.2s;
}
.contact-detail:hover { border-color: rgba(255,255,255,0.15); color: var(--text); }
.contact-detail svg { color: var(--purple-light); flex-shrink: 0; }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text); font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  outline: none; resize: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(139,92,246,0.5);
  background: rgba(139,92,246,0.04);
}
.form-group select option { background: #1a1d2a; }

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 1; background: var(--bg);
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-img { height: 32px; opacity: 0.85; }
.footer-brand p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin-top: 14px; max-width: 260px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.footer-links a { font-size: 0.87rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 48px);
  max-width: 860px;
  background: rgba(17, 21, 32, 0.97);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  animation: slideUpCookie 0.4s ease both;
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}
@keyframes slideUpCookie {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.cookie-text strong { font-size: 0.95rem; font-weight: 600; display: block; margin-bottom: 4px; }
.cookie-text p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color 0.2s;
}
.cookie-link:hover { color: var(--text); }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.cookie-btn.refuse {
  background: rgba(255,255,255,0.06);
  color: var(--text-light);
  border: 1px solid var(--border);
}
.cookie-btn.refuse:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.cookie-btn.accept {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(139,92,246,0.35);
}
.cookie-btn.accept:hover { box-shadow: 0 6px 24px rgba(139,92,246,0.5); transform: translateY(-1px); }

@media (max-width: 640px) {
  .cookie-banner { bottom: 12px; width: calc(100% - 24px); }
  .cookie-inner { padding: 16px; gap: 14px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ===== ADEN BANNER ===== */
.aden-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(251,191,36,0.07);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: var(--radius);
  padding: 24px 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.aden-icon { flex-shrink: 0; }
.aden-content { flex: 1; min-width: 200px; }
.aden-content strong { color: var(--text); font-size: 0.95rem; }
.aden-content p { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; line-height: 1.6; }
.aden-content p strong { color: #fbbf24; }

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 240px; }
.newsletter-form { flex: 1; min-width: 280px; }
.newsletter-input-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.newsletter-input-wrap input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 13px 22px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input-wrap input[type="email"]:focus { border-color: var(--purple); }
.newsletter-legal { font-size: 0.75rem; color: var(--text-muted); }
.newsletter-legal a { color: var(--purple-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 600px; text-align: center; }
  .hero-slogan { text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .menu-toggle { display: flex; }
  .container { padding: 0 20px; }
  .hero-inner { padding: 40px 20px 60px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .logos-label { display: none; }

  /* Réduction des paddings verticaux */
  .services, .process, .pricing, .why, .faq, .first-client, .contact { padding: 64px 0; }
  .newsletter-section { padding: 56px 0; }
  .newsletter-inner { gap: 36px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }

  /* Addons */
  .addons { padding: 20px 16px; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }

  /* ADEN */
  .aden-banner { padding: 18px 20px; flex-direction: column; gap: 14px; }

  /* Blog / Article */
  .article-wrap { padding: 0 20px 60px; }
}

/* ===== TRÈS PETITS ÉCRANS (≤ 480px) ===== */
@media (max-width: 480px) {
  .section-title { font-size: 1.7rem; }
  .contact-form { padding: 20px 16px; }
  .addons-grid { grid-template-columns: 1fr; }
  .newsletter-input-wrap { flex-direction: column; }
  .newsletter-input-wrap input[type="email"] { min-width: 100%; border-radius: var(--radius-sm); }
  .newsletter-input-wrap .btn-primary { width: 100%; justify-content: center; border-radius: var(--radius-sm); }
  .pricing { padding: 48px 0; }
  .addons { padding: 18px 14px; }
  .faq-q { font-size: 0.9rem; padding: 16px 14px; }
  .contact-detail { font-size: 0.83rem; padding: 12px 14px; }
  .hero-title { font-size: 1.9rem; }
  .btn-primary, .btn-ghost { padding: 12px 22px; font-size: 0.88rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
}
