/* ============================================
   STYLE.CSS — NovaTech Agency v2.0 PREMIUM
   ============================================ */

/* ====== DESIGN TOKENS ====== */
:root {
  --bg: transparent;
  --bg-1: #F8FAFC;
  --bg-2: #F1F5F9;
  --bg-card: rgba(255, 255, 255, 0.9);
  --border: rgba(15, 23, 42, 0.08);
  --border-light: rgba(255,255,255,0.12);
  --primary: #4F46E5;
  --primary-dim: rgba(79,70,229,0.1);
  --primary-glow: rgba(79,70,229,0.25);
  --accent: #06B6D4;
  --accent-dim: rgba(6,182,212,0.15);
  --gold: #3B82F6;
  --gold-dim: rgba(79,70,229,0.1);
  --text: #0F172A;
  --text-muted: #475569;
  --text-dim: #94A3B8;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --t: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --t-fast: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow: 0 24px 80px rgba(0,0,0,0.5);
  --shadow-sm: 0 8px 32px rgba(0,0,0,0.3);
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-image: none;
  background-size: 150px 150px;
  background-attachment: fixed;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ====== GLOBAL MESH ANIMATED BG ====== */
.global-mesh-bg {
  position: fixed; inset: 0; z-index: -1;
  background: var(--bg);
  overflow: hidden; pointer-events: none;
}
.mesh-blob {
  position: absolute;
  filter: blur(160px); opacity: 0.9;
  border-radius: 50%;
  animation: blobMove 24s infinite alternate ease-in-out;
}
.blob-1 {
  width: 1200px; height: 1200px;
  background: rgba(59, 130, 246, 0.2);
  top: -200px; left: -100px;
}
.blob-2 {
  width: 1500px; height: 1500px;
  background: rgba(6, 182, 212, 0.15);
  bottom: -400px; right: -300px;
  animation-delay: -7s;
}
.blob-3 {
  width: 1000px; height: 1000px;
  background: rgba(139, 92, 246, 0.15); /* Purple accent */
  top: 40%; left: 40%;
  animation-delay: -14s;
}
@keyframes blobMove {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(150px, 200px) scale(1.1); }
  66% { transform: translate(-100px, 100px) scale(0.9); }
  100% { transform: translate(100px, -150px) scale(1.05); }
}
a { text-decoration: none; color: inherit; cursor: none; }
ul { list-style: none; }
button { cursor: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6, .section-title, .dm-serif { font-family: 'Plus Jakarta Sans', serif; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #F59E0B 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ====== LAYOUT ====== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }

/* ====== SECTION HEADER ====== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: var(--primary-dim);
  border: 1px solid rgba(123,111,255,0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
  border: none; transition: var(--t); white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.08);
  opacity: 0; transition: opacity 0.3s; border-radius: inherit;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 8px 32px var(--primary-glow);
}
.btn-primary:hover { box-shadow: 0 16px 48px rgba(123,111,255,0.45); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(0,0,0,0.02); border: 1px solid var(--border-light);
  color: var(--text); backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.15); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #F59E0B 100%);
  color: #1a1200;
  box-shadow: 0 8px 32px rgba(251,191,36,0.3);
}
.btn-gold:hover { box-shadow: 0 16px 48px rgba(251,191,36,0.45); transform: translateY(-2px); }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ====== CUSTOM CURSOR ====== */
body, a, button, input, textarea, .service-card, label { cursor: none !important; }

.cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none; z-index: 9999999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}
.cursor-follower {
  display: none !important; /* No follower, no bubble */
}
.cursor.hover { 
  width: 32px; height: 32px; 
  background: rgba(6, 182, 212, 0.4); 
}
.cursor.active { 
  width: 8px; height: 8px; 
}

/* ====== LOADER ====== */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; width: 280px; }
.loader-logo {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 2rem; font-weight: 900; margin-bottom: 32px;
}
.loader-icon { color: var(--primary); font-size: 2.4rem; }
.loader-logo span { color: var(--accent); }
.loader-bar-wrap {
  width: 100%; height: 2px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden; margin-bottom: 12px;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px; width: 0;
  transition: width 0.1s linear;
}
.loader-percent { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.loader-overlay {
  position: absolute; inset: 0;
  background: var(--bg);
  transform: translateY(0);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader-overlay.out { transform: translateY(-100%); }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: var(--t);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.4rem; font-weight: 900;
}
.logo-icon { color: var(--primary); font-size: 1.6rem; }
.logo-accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  color: var(--text-muted); font-weight: 500; font-size: 0.95rem;
  position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width 0.3s;
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.nav-highlight { color: var(--gold); }
.nav-link.nav-highlight::after { background: var(--gold); }
.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), #9B85FF);
  border-radius: 50px; color: #fff; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 20px var(--primary-glow); transition: var(--t);
}
.nav-cta:hover { box-shadow: 0 8px 30px rgba(123,111,255,0.5); transform: translateY(-2px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }

/* ====== MAGNETIC BUTTON ====== */
.magnetic-btn { transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important; }

/* ====== HERO ====== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: transparent;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123,111,255,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(62,207,142,0.06) 0%, transparent 60%);
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 0; opacity: 0.6;
  width: 100%; height: 100%;
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 820px; padding: 120px 28px 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 50px; font-size: 1.1rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); animation: pulse 2s ease-in-out infinite;
}
.badge-award {
  padding: 3px 10px; background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.2); border-radius: 50px;
  color: var(--gold); font-size: 0.75rem;
}
@keyframes pulse { 0%, 100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.3); } }
.hero-title {
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  font-weight: 900; line-height: 1.08; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-title .line { display: block; overflow: hidden; animation: clipUp 0.9s cubic-bezier(0.76, 0, 0.24, 1) both; }
.hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) { animation-delay: 0.22s; }
.hero-title .line:nth-child(3) { animation-delay: 0.34s; }
@keyframes clipUp { from { transform: translateY(110%); } to { transform: translateY(0); } }
.hero-title-em .dm-serif { font-size: 1.08em; font-style: italic; }
.hero-title-em { color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  color: var(--text-muted); font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 580px; margin: 0 auto 36px; line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-subtitle strong { color: var(--text); }
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 52px; animation: fadeInUp 0.8s ease 0.65s both;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 22px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s ease 0.8s both;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number, .stat-plus {
  font-size: 2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-plus { font-size: 1.4rem; }
.stat-label { color: var(--text-muted); font-size: 0.75rem; margin-top: 4px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-dim); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollLineAnim 1.5s ease-in-out infinite;
}
@keyframes scrollLineAnim { 0% { height: 0; opacity: 0; } 50% { height: 50px; opacity: 1; } 100% { height: 0; opacity: 0; } }

/* ====== TRUSTED ====== */
.trusted-section {
  padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); overflow: hidden;
}
.trusted-label { text-align: center; color: var(--text-dim); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 18px; }
.trusted-track { overflow: hidden; mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%); }
.trusted-logos {
  display: flex; gap: 56px; animation: marquee 22s linear infinite; width: max-content;
}
.trusted-logos span { color: var(--text-dim); font-size: 0.95rem; font-weight: 700; font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.04em; white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ====== ABOUT (QUI SUIS-JE) ====== */
.about-wrapper {
  display: flex; gap: 60px; align-items: center;
}
.about-image {
  flex: 1; position: relative;
}
.about-image img {
  width: 100%; border-radius: 20px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.about-content {
  flex: 1;
}
.about-perks {
  list-style: none; margin-top: 20px; margin-bottom: 20px;
}
.about-perks li {
  margin-bottom: 12px; font-size: 1.05rem; color: var(--text-dim);
}
.about-perks li strong {
  color: var(--accent);
}
@media (max-width: 900px) {
  .about-wrapper { flex-direction: column; gap: 40px; }
}

/* ====== SERVICES ====== */
.services-section { background: transparent; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative; text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--t); overflow: hidden;
  cursor: none;
  opacity: 0; transform: translateY(40px);
  outline: none; width: 100%;
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 80% 20%, rgba(123,111,255,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s;
}
.service-card:hover .service-card-bg { opacity: 1; }
.service-card:hover {
  border-color: rgba(26,30,41,0.2);
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.08), 0 0 0 1px rgba(26,30,41,0.1);
}
.service-card:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }
.service-card > * { position: relative; z-index: 1; }
.service-card-number {
  position: absolute; top: 20px; right: 24px;
  font-size: 0.7rem; font-weight: 800; color: var(--text-dim);
  letter-spacing: 0.08em;
}
.service-card.featured { border-color: rgba(26,30,41,0.2); background: linear-gradient(135deg, #F1F5F9, #E2E8F0); }
.service-badge-featured {
  display: inline-block; padding: 4px 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50px; font-size: 0.72rem; font-weight: 700; color: #fff;
  margin-bottom: 14px;
}
.service-icon-wrap {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dim);
  border: 1px solid rgba(123,111,255,0.2);
  border-radius: 14px; color: var(--primary); margin-bottom: 20px;
  transition: var(--t);
}
.service-icon-wrap svg { width: 26px; height: 26px; }
.service-card:hover .service-icon-wrap {
  background: rgba(26,30,41,0.08); border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  transform: scale(1.08) rotate(-3deg);
}
.service-card h3 {
  color: var(--text); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.service-tags span {
  padding: 3px 10px; background: rgba(0,0,0,0.04); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.72rem; font-weight: 600; color: var(--text-dim);
}
.service-arrow {
  font-size: 1.2rem; color: var(--primary);
  transform: translateX(0); transition: transform 0.3s;
}
.service-card:hover .service-arrow { transform: translateX(6px); }

/* ====== SERVICE MODAL ====== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(7,10,18,0.7);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  background: var(--bg-1);
  border: 1px solid rgba(123,111,255,0.2);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 860px; max-height: 90vh;
  overflow-y: auto; padding: 56px;
  transform: scale(0.92) translateY(30px);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal::-webkit-scrollbar { width: 4px; }
.modal::-webkit-scrollbar-thumb { background: var(--primary); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast);
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--text); transform: rotate(90deg); }
/* Modal content styles */
.modal-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
.modal-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dim); border: 1px solid rgba(123,111,255,0.2);
  border-radius: 16px; color: var(--primary);
}
.modal-icon svg { width: 32px; height: 32px; }
.modal-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 8px; }
.modal-subtitle { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
.modal-section { margin-bottom: 36px; }
.modal-section-title {
  font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--primary); margin-bottom: 16px;
}
.modal-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.modal-feature-icon { font-size: 1.2rem; flex-shrink: 0; }
.modal-feature-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.modal-feature-text span { color: var(--text-muted); font-size: 0.82rem; }
.modal-case {
  padding: 24px; background: linear-gradient(135deg, rgba(123,111,255,0.06), rgba(62,207,142,0.04));
  border: 1px solid rgba(123,111,255,0.15); border-radius: var(--radius);
  margin-bottom: 12px;
}
.modal-case-client { font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.modal-case-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.modal-case-results { display: flex; gap: 16px; flex-wrap: wrap; }
.modal-result-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: rgba(62,207,142,0.1); border: 1px solid rgba(62,207,142,0.25);
  border-radius: 50px; font-size: 0.8rem; font-weight: 700; color: var(--accent);
}
.modal-tech-list { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-tech {
  padding: 6px 14px; background: var(--primary-dim); border: 1px solid rgba(123,111,255,0.2);
  border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: var(--primary);
}
.modal-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; padding-top: 8px; }
.modal-cta-note { color: var(--text-muted); font-size: 0.82rem; }

/* ====== GARANTIE ====== */
.garantie-section {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.garantie-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 20% 50%, rgba(251,191,36,0.05) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 80% 50%, rgba(123,111,255,0.04) 0%, transparent 60%);
}
.garantie-wrapper {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 80px 1fr 340px; gap: 40px; align-items: center;
}
.garantie-badge-big { font-size: 4rem; }
.garantie-content .section-tag { display: inline-flex; }
.garantie-content .section-title { text-align: left; }
.garantie-desc { color: var(--text-muted); font-size: 1rem; margin-bottom: 28px; }
.garantie-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.garantie-item { display: flex; align-items: flex-start; gap: 16px; }
.garantie-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.garantie-item strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.garantie-item p { color: var(--text-muted); font-size: 0.88rem; }
.garantie-visual { display: flex; align-items: center; justify-content: center; }
.garantie-circle {
  position: relative; width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.garantie-circle-inner { text-align: center; position: relative; z-index: 1; }
.garantie-big-num { display: block; font-size: 4.5rem; font-weight: 900; line-height: 1; color: var(--gold); }
.garantie-big-label { display: block; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.2em; color: var(--gold); opacity: 0.8; }
.garantie-big-sub { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; color: var(--text-muted); text-transform: uppercase; }
.garantie-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: rotateRing 8s linear infinite; }
@keyframes rotateRing { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }

/* ====== PROCESS ====== */
.process-section { background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); border-top: 1px solid var(--border); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative;
}
.process-step { position: relative; }
.step-head { display: flex; align-items: center; gap: 0; margin-bottom: 24px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-dim); border: 1.5px solid rgba(26,30,41,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--primary);
  flex-shrink: 0;
}
.step-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(26,30,41,0.2), transparent);
}
.step-line.last { display: none; }
.step-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }
.process-step { opacity: 0; transform: translateY(24px); transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
.process-step.visible { opacity: 1; transform: translateY(0); }

/* ====== PORTFOLIO ====== */
.portfolio-section { background: transparent; }
.portfolio-filter {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px; border-radius: 50px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted);
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600;
  transition: var(--t-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.portfolio-item { transition: opacity 0.35s ease, transform 0.35s ease; }
.portfolio-item.hidden { display: none; }
.portfolio-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: var(--t);
}
.portfolio-card:hover { border-color: rgba(123,111,255,0.25); box-shadow: var(--shadow); transform: translateY(-8px); }
.portfolio-img {
  height: 240px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(7,10,18,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-cta {
  padding: 12px 28px; background: #fff; color: var(--bg);
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  transform: translateY(10px); transition: transform 0.35s ease;
}
.portfolio-card:hover .portfolio-overlay-cta { transform: translateY(0); }
/* Mockup elements */
.portfolio-mockup { width: 85%; height: 85%; padding: 12px; }
.web-mockup { background: rgba(0,0,0,0.25); border-radius: 8px; overflow: hidden; }
.mock-bar { height: 22px; background: rgba(0,0,0,0.3); margin-bottom: 10px; border-radius: 2px; }
.mock-content { padding: 4px; display: flex; flex-direction: column; gap: 8px; }
.mock-block { background: rgba(255,255,255,0.18); border-radius: 4px; }
.mock-block.full { width: 100%; }
.mock-block.three-q { width: 75%; }
.mock-block.half { width: 50%; }
.mock-block.xs { height: 10px; }
.mock-block.sm { height: 18px; }
.mock-block.lg { height: 50px; }
.mock-block.xl { height: 70px; }
.mock-block.mb8 { margin-bottom: 8px; }
.mock-row { display: flex; gap: 6px; }
.mock-row .mock-block { flex: 1; height: 36px; }
.app-mockup { display: flex; align-items: center; justify-content: center; }
.phone-frame {
  width: 100px; height: 180px; border: 3px solid rgba(255,255,255,0.25);
  border-radius: 16px; padding: 12px 10px; background: rgba(0,0,0,0.3); position: relative;
}
.phone-notch {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 4px; background: rgba(15, 23, 42, 0.1); border-radius: 2px;
}
.phone-screen { height: 100%; padding-top: 4px; display: flex; flex-direction: column; gap: 0; }
.chart-mockup { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 20px; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; width: 100%; }
.cbar { flex: 1; background: rgba(255,255,255,0.4); border-radius: 4px 4px 0 0; transition: height 1s ease; }
.chart-label-big {
  font-size: 1.8rem; font-weight: 900; color: #fff; margin-top: 12px;
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
}
.portfolio-info { padding: 22px 26px; }
.portfolio-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.portfolio-tag {
  padding: 4px 12px; background: var(--primary-dim);
  border-radius: 50px; color: var(--primary); font-size: 0.72rem; font-weight: 700;
}
.portfolio-year { color: var(--text-dim); font-size: 0.78rem; }
.portfolio-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.portfolio-result {
  display: flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 0.85rem; font-weight: 600;
}
.result-icon { font-size: 1rem; }

/* ====== AWARDS ====== */
.awards-section {
  padding: 44px 0; background: var(--bg-1);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.awards-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.award-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 36px;
  border-right: 1px solid var(--border);
  transition: var(--t-fast);
}
.award-item:last-child { border-right: none; }
.award-item:hover { background: rgba(255,255,255,0.02); }
.award-icon { font-size: 1.8rem; }
.award-text strong { display: block; font-size: 0.9rem; font-weight: 700; }
.award-text span { color: var(--text-muted); font-size: 0.78rem; }

/* ====== TESTIMONIALS ====== */
.temoignages-section { background: var(--bg-1); border-top: 1px solid var(--border); }
.temoignages-section .section-title { line-height: 1.25; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; gap: 24px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.testimonial-card {
  min-width: calc(33.333% - 16px); flex-shrink: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--t);
}
.testimonial-card:hover { border-color: rgba(123,111,255,0.2); transform: translateY(-4px); }
.testi-stars { color: #FBBF24; font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testi-text {
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.75;
  font-style: italic; margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.92rem; font-weight: 700; }
.testi-author span { color: var(--text-muted); font-size: 0.78rem; }
.testi-result-badge {
  margin-left: auto; padding: 4px 12px;
  background: rgba(62,207,142,0.1); border: 1px solid rgba(62,207,142,0.2);
  border-radius: 50px; color: var(--accent); font-size: 0.72rem; font-weight: 700;
}
.testimonials-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.testi-prev, .testi-next {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  color: var(--text); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast);
}
.testi-prev:hover, .testi-next:hover { border-color: var(--primary); color: var(--primary); }
.testi-dots { display: flex; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-light); transition: all 0.3s; }
.dot.active { width: 22px; border-radius: 4px; background: var(--primary); }

/* ====== FAQ ====== */
.faq-section { background: transparent; }
.faq-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  text-align: left; gap: 16px; transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; transition: transform 0.35s, background 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg); background: var(--primary-dim); border-color: var(--primary); color: var(--primary);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1), padding 0.3s;
}
.faq-answer p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; padding-bottom: 20px; }
.faq-answer.open { max-height: 300px; }

/* ====== CTA BAND ====== */
.cta-band {
  background: linear-gradient(135deg, rgba(123,111,255,0.08) 0%, rgba(62,207,142,0.05) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.cta-band-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; line-height: 1.2; margin-bottom: 12px; }
.cta-band-text p { color: var(--text-muted); font-size: 1rem; max-width: 480px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ====== CONTACT ====== */
.contact-section { background: var(--bg-1); border-top: 1px solid var(--border); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info .section-title { text-align: left; }
.contact-info > p { color: var(--text-muted); margin: 12px 0 32px; font-size: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--primary-dim); border: 1px solid rgba(123,111,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 1px; }
.contact-item span { color: var(--text-muted); font-size: 0.83rem; }
.contact-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.contact-trust span {
  padding: 6px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.78rem; font-weight: 600; color: var(--text-muted);
}
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 44px;
  box-shadow: var(--shadow-sm);
}
/* Floating labels */
.form-group { margin-bottom: 20px; position: relative; }
.form-group.floating { position: relative; }
.form-group.floating input,
.form-group.floating textarea {
  width: 100%; padding: 22px 18px 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group.floating label {
  position: absolute; left: 18px; top: 16px;
  font-size: 0.88rem; color: var(--text-dim);
  transition: all 0.25s ease; pointer-events: none;
}
.form-group.floating input:focus,
.form-group.floating input:not(:placeholder-shown),
.form-group.floating textarea:focus,
.form-group.floating textarea:not(:placeholder-shown) {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.form-group.floating input:focus + label,
.form-group.floating input:not(:placeholder-shown) + label,
.form-group.floating textarea:focus + label,
.form-group.floating textarea:not(:placeholder-shown) + label {
  top: 7px; font-size: 0.72rem; color: var(--primary); font-weight: 600;
}
.label-static { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%; padding: 14px 40px 14px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  outline: none; -webkit-appearance: none; transition: border-color 0.3s;
}
.select-wrap select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-dim); }
.select-wrap select option { background: var(--bg-1); }
.select-arrow {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-dim); pointer-events: none;
}
.budget-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-label input { display: none; }
.pill-label span {
  display: block; padding: 8px 16px; cursor: pointer;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  transition: var(--t-fast); color: var(--text-muted);
}
.pill-label input:checked + span { background: var(--primary-dim); border-color: var(--primary); color: var(--primary); }
.pill-label span:hover { border-color: rgba(15, 23, 42, 0.1); color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group.floating textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; text-align: center; padding: 36px; }
.form-success.visible { display: block; animation: fadeInUp 0.5s ease both; }
.success-anim { font-size: 3rem; margin-bottom: 14px; animation: bounceIn 0.5s ease; }
.form-success h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }
@keyframes bounceIn { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }

/* ====== FOOTER ====== */
.footer { background: var(--bg-1); border-top: 1px solid var(--border); padding: 70px 0 32px; position: relative; z-index: 10; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 52px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: var(--text-muted); transition: var(--t-fast);
}
.social-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.86rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-dim); font-size: 0.82rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-muted); }

/* ====== BACK TO TOP ====== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); border: none; color: #fff; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px var(--primary-glow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(123,111,255,0.5); }

/* ====== REVEAL ANIMATIONS ====== */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1); }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal-fade] { opacity: 0; transition: opacity 0.9s ease; }
[data-reveal-fade].visible { opacity: 1; }

/* ====== GENERAL KEYFRAMES ====== */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .garantie-wrapper { grid-template-columns: 1fr 1fr; }
  .garantie-badge-big { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
  .faq-wrapper { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .testimonial-card { min-width: calc(50% - 12px); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 44px; }
  .contact-form { padding: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .cta-band-content { flex-direction: column; text-align: center; }
  .cta-band-text p { margin: 0 auto; }
  .cta-band-actions { justify-content: center; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; inset: 0;
    background: rgba(7,10,18,0.97); backdrop-filter: blur(20px);
    align-items: center; justify-content: center; gap: 28px; z-index: 999;
  }
  .nav-links.open .nav-link, .nav-links.open .nav-cta { font-size: 1.3rem; padding: 8px 0; }
  .nav-hamburger { display: flex; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(85%); }
  .garantie-wrapper { grid-template-columns: 1fr; text-align: center; }
  .garantie-visual { margin: 0 auto; }
  .garantie-content .section-title { text-align: center; }
  .garantie-item { flex-direction: column; align-items: center; text-align: center; }
  .awards-grid { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 28px; }
  .award-item { border: none; border-bottom: 1px solid var(--border); width: 100%; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .modal { padding: 28px 20px; }
  .modal-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 14px; }
  .stat-divider { display: none; }
  body {
  background-image: none;
  background-size: 150px 150px;
  background-attachment: fixed; cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; }
  .testi-result-badge { display: none; }
}

/* =========================================
   SECTEURS SECTION (HEX GRID)
   ========================================= */
.secteurs-section {
  padding-bottom: 20px;
}
.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.secteur-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.secteur-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.secteur-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.secteur-card:hover::before {
  opacity: 1;
}
.secteur-hex {
  width: 60px;
  height: 60px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.4s ease, border-color 0.4s;
}
.secteur-card:hover .secteur-hex {
  transform: rotate(30deg);
  border-color: rgba(255,255,255,0.4);
}
.secteur-body h3 {
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.secteur-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.secteur-kpi {
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(62, 207, 142, 0.1);
  color: #3ECF8E;
  border: 1px solid rgba(62, 207, 142, 0.2);
  border-radius: 100px;
  font-family: var(--font-space);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =========================================
   ADN SECTION (FOUNDER / STORY)
   ========================================= */
.adn-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .adn-wrapper {
    grid-template-columns: 1fr;
  }
}
.adn-desc {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 1.5rem 0 2.5rem;
}
.adn-desc strong {
  color: var(--text-main);
  font-weight: 500;
}
.adn-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.adn-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.adn-value-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.adn-value strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.adn-value span {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.adn-visual {
  perspective: 1000px;
}
.adn-card-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.adn-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.adn-card-back {
  position: absolute;
  inset: 0;
  transform: translate(20px, 20px) rotate(3deg);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.03), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.adn-metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0.6;
}
.adn-big {
  font-family: var(--font-space);
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--text-main), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.adn-card-front {
  position: relative;
  z-index: 2;
  background: var(--bg-2);
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.adn-card-stack:hover .adn-card-back {
  transform: translate(30px, 30px) rotate(6deg);
}
.adn-card-stack:hover .adn-card-front {
  transform: translate(-10px, -10px) rotate(-2deg);
}
.adn-founder-quote {
  position: relative;
}
.adn-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: rgba(15, 23, 42, 0.06);
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: -1;
}
.adn-founder-quote p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text-main);
  margin-bottom: 2rem;
  font-style: italic;
}
.adn-founder {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.adn-founder-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--text-main), var(--text-muted));
  color: var(--bg-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
}
.adn-founder strong {
  display: block;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
}
.adn-founder span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================================
   NEWSLETTER (FOOTER)
   ========================================= */
.footer-newsletter {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.footer-newsletter-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.newsletter-input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: var(--font-space);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input:focus {
  border-color: rgba(255,255,255,0.4);
}
.newsletter-btn {
  background: var(--text-main);
  color: var(--bg-color);
  border: none;
  border-radius: 10px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.newsletter-btn:hover {
  transform: scale(1.05);
}
}
.newsletter-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================
   APPROCHE BUDGET
   ========================================= */
.budget-section {
  padding-bottom: 60px;
}
.budget-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.budget-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.budget-content {
  flex: 1;
}
.budget-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 1.5rem 0 2.5rem;
}
.budget-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.b-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.b-icon {
  width: 45px;
  height: 45px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.b-feature strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}
.b-feature span {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.budget-visual {
  flex-shrink: 0;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.budget-badge-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--bg-card), var(--bg-2), var(--bg-card));
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5), 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}
.budget-badge-circle::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  z-index: -1;
  opacity: 0.3;
  animation: rotateGlow 10s linear infinite;
}
@keyframes rotateGlow {
  100% { transform: rotate(360deg); }
}
.budget-badge-inner {
  width: 180px;
  height: 180px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: inset 0 10px 20px rgba(0,0,0,0.5);
}
.budget-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.budget-text {
  text-align: center;
  font-family: var(--font-space);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-main);
  line-height: 1.2;
}
@media (max-width: 991px) {
  .budget-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
}

/* ===== SIMULATOR OVERLAY ===== */
.simulator-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.simulator-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.simulator-container {
  width: 100%;
  max-width: 800px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.simulator-overlay.is-active .simulator-container {
  transform: translateY(0) scale(1);
}

.simulator-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.simulator-close:hover {
  background: rgba(15, 23, 42, 0.06);
  transform: rotate(90deg);
}

.simulator-header {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.simulator-progress-bg {
  flex: 1;
  height: 6px;
  background: var(--bg-2);
  border-radius: 10px;
  overflow: hidden;
}

.simulator-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.4s ease;
}

.simulator-steps-count {
  font-family: var(--font-space);
  font-weight: 700;
  color: var(--text-dim);
}

.simulator-body {
  background-image: none;
  background-size: 150px 150px;
  background-attachment: fixed;
  position: relative;
  min-height: 350px;
}

.sim-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-step.active {
  position: relative;
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.sim-step.passed {
  transform: translateX(-30px);
}

.sim-question {
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: var(--font-dm);
  color: var(--text);
}

.sim-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.sim-option {
  cursor: pointer;
}

.sim-option input[type="radio"] {
  display: none;
}

.sim-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.sim-option input[type="radio"]:checked + .sim-card {
  background: rgba(123, 111, 255, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(123, 111, 255, 0.2);
  transform: translateY(-5px);
}

.sim-option:hover .sim-card {
  border-color: rgba(15, 23, 42, 0.1);
  background: var(--bg-card);
}

.sim-icon {
  font-size: 2rem;
}

.sim-text {
  font-family: var(--font-space);
  font-weight: 500;
  font-size: 1.1rem;
}

.simulator-footer {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}

.sim-loading {
  text-align: center;
  padding: 40px;
}

.sim-loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .simulator-container {
    padding: 20px;
    height: 100%;
    border-radius: 0;
    max-width: 100%;
    overflow-y: auto;
  }
  .sim-question {
    font-size: 1.5rem;
  }
}

/* ===== CDC BANNER ===== */
.cdc-banner {
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.cdc-banner-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cdc-icon {
  font-size: 3rem;
  background: rgba(15, 23, 42, 0.06);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cdc-text { flex: 1; }
.cdc-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', serif;
}
.cdc-text p {
  opacity: 0.8;
  font-size: 1.1rem;
}
.open-cdc-btn {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  border: none;
}
.open-cdc-btn:hover {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 768px) {
  .cdc-banner-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== CDC MODAL (TYPEFORM-LIKE) ===== */
.cdc-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(11,17,32,0.95);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  color: #fff;
}
.cdc-overlay.is-active {
  opacity: 1; pointer-events: all;
}
.cdc-container {
  width: 100%; max-width: 800px;
  padding: 40px; position: relative;
}
.cdc-close {
  position: absolute; top: -40px; right: 20px;
  background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
  opacity: 0.6;
}
.cdc-close:hover { opacity: 1; }

.cdc-progress-bg {
  width: 100%; height: 4px; background: rgba(15, 23, 42, 0.06);
  margin-bottom: 40px; border-radius: 2px;
}
.cdc-progress-bar {
  height: 100%; background: var(--accent);
  transition: width 0.3s ease; border-radius: 2px;
}

.cdc-step {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.cdc-step.active { display: block; }
.cdc-step-num {
  font-size: 1rem; color: var(--accent); font-weight: bold; margin-bottom: 15px; display: block;
}
.cdc-step h2 {
  font-size: 2.2rem; margin-bottom: 30px; font-family: 'Plus Jakarta Sans', serif; line-height: 1.3;
}
.cdc-step textarea, .cdc-step input[type="text"], .cdc-step input[type="email"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
  color: #fff;
  font-size: 1.5rem;
  padding: 10px 0;
  outline: none;
  font-family: inherit;
  margin-bottom: 30px;
  resize: none;
}
.cdc-step textarea { height: 100px; }
.cdc-step textarea:focus, .cdc-step input[type="text"]:focus, .cdc-step input[type="email"]:focus {
  border-bottom-color: var(--accent);
}

.cdc-options {
  display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px;
}
.cdc-option {
  position: relative; cursor: pointer;
}
.cdc-option input {
  position: absolute; opacity: 0; cursor: pointer;
}
.cdc-option span {
  display: block;
  padding: 20px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}
.cdc-option:hover span {
  background: rgba(15, 23, 42, 0.06);
}
.cdc-option input:checked + span {
  background: rgba(197, 168, 128, 0.2);
  border-color: var(--accent);
  color: #fff;
}

/* ====== INFINITE LOGO MARQUEE ====== */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 40px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-content {
  display: inline-block;
  animation: marqueeAnim 30s linear infinite;
}
.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin: 0 40px;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.marquee-content span:hover {
  opacity: 1;
  color: var(--text);
}
@keyframes marqueeAnim {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====== HORIZONTAL SCROLL PORTFOLIO ====== */
.portfolio-horizontal {
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg);
}
.portfolio-track {
  display: flex;
  gap: 40px;
  padding: 0 5vw;
  width: fit-content;
  will-change: transform;
}
.horizontal-card {
  width: 60vw;
  max-width: 800px;
  height: 60vh;
  min-height: 400px;
  background: var(--bg-1);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.horizontal-card-metric {
  font-family: 'Plus Jakarta Sans', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.secteur-body {
  background-image: none;
  background-size: 150px 150px;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card > p {
  flex-grow: 1;
}

/* Overrides from user feedback */
.step-num { display: none !important; }
.step-line { display: none !important; }
.step-head { margin-bottom: 12px !important; justify-content: center; }
.process-step { text-align: center; padding: 20px; background: rgba(255, 255, 255, 0.8); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.process-step:hover { background: #FFFFFF; border-color: var(--primary); }

#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* Behind everything */
  pointer-events: none; /* Let clicks pass through to the page, wait grab needs pointer events, but wait, grab is interactivity. If we want grab, it must have pointer-events auto, but that blocks clicks on background. Let's just make it pointer-events: none for safety, or put it z-index 0 and everything else relative z-index 1 */
}


/* High Contrast Titles */
h1, h2, .section-title, .hero-title {
  color: var(--text) !important;
  text-shadow: none !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
}

/* Ensure the gradients still show up but have drop-shadow instead of text-shadow */
.text-gradient, .text-gradient-gold, .hero-title-em {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  text-shadow: none !important;
}

