/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d1117;
  --bg-2: #161b27;
  --bg-3: #1e2433;
  --border: rgba(255,255,255,.07);
  --text: #e2e8f0;
  --text-muted: #8892a4;
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --accent: #10b981;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 32px rgba(0,0,0,.4);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

:root {
  --text-muted: #9aa3b2;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   TYPOGRAPHY HELPERS
   ============================ */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-light) 0%, #a78bfa 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.section-header .h2-nowrap { font-size: clamp(1.4rem, 2.8vw, 2.1rem); white-space: nowrap; }
.section-header p { color: var(--text-muted); font-size: 1.08rem; line-height: 1.7; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99,102,241,.5);
}

.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary-light); transform: translateY(-2px); }

.btn-nav {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 9px 18px;
  font-size: .85rem;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(99,102,241,.4); }

.btn-client {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-client svg { width: 16px; height: 16px; }
.btn-client:hover {
  background: rgba(99,102,241,.2);
  border-color: rgba(99,102,241,.5);
  transform: translateY(-2px);
}

.footer-client-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary-light);
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  transition: var(--transition);
}
.footer-client-btn svg { width: 14px; height: 14px; }
.footer-client-btn:hover {
  background: rgba(99,102,241,.2);
  color: #fff;
}

.btn-full { width: 100%; justify-content: center; }

/* ============================
   SECTIONS
   ============================ */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-2); }

/* ============================
   LOADER
   ============================ */
body.is-loading { overflow: hidden; }

#siteLoader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0f0f13;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
#siteLoader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.loader-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -.02em;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-logo .logo-icon { font-size: 2rem; }
@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}
.loader-bar {
  width: 160px;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 99px;
  animation: loaderFill 1.6s ease forwards;
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ============================
   TOP BAR
   ============================ */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: .75rem;
  color: var(--text-muted);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left svg { width: 13px; height: 13px; flex-shrink: 0; }

.topbar-tva {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .01em;
}

.topbar-hours {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: #fff;
  font-size: .78rem;
}
.topbar-hours-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(16,185,129,.6);
  animation: topbarPulse 2s ease-in-out infinite;
}
@keyframes topbarPulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
  70%  { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 33px; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 14px 0;
}

.navbar.scrolled {
  background: rgba(13,17,23,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -.02em;
}
.logo strong { font-weight: 700; }
.logo-icon { font-size: 1.5rem; }
.logo-img { height: 62px; width: auto; display: block; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a:not(.btn) {
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.nav-mobile { display: none; } /* caché sur desktop, activé en mobile */
.nav-mobile-close { display: none; } /* uniquement visible en mobile */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 220px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366f1, #ec4899);
  top: -200px; right: -200px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #10b981, #3b82f6);
  bottom: -100px; left: -100px;
  animation-delay: -4s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 999px;
  margin-top: 48px;
  margin-bottom: 28px;
}
.hero-badge svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--primary-light); }
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-desc strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}
.stat-label { font-size: .8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.001% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================
   MARQUES / PARTENAIRES
   ============================ */
.brands-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.brands-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .55;
  transition: opacity var(--transition);
}
.brand-item:hover { opacity: 1; }
.brand-item svg {
  height: 34px;
  width: auto;
  display: block;
}
.brand-item span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .brands-logos { gap: 28px; }
  .brand-item img { height: 26px; }
}

/* ============================
   SERVICES
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.06), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(var(--c, 99 102 241), .12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c, var(--primary));
  border: 1px solid rgba(var(--c, 99 102 241), .2);
}
.card-icon { background: color-mix(in srgb, var(--c) 12%, transparent); color: var(--c); border-color: color-mix(in srgb, var(--c) 20%, transparent); }
.card-icon svg { width: 26px; height: 26px; }

.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 20px; line-height: 1.7; }

.card-list { display: flex; flex-direction: column; gap: 6px; }
.card-list li {
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================
   ABOUT
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-wrapper {
  width: 340px; height: 340px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(99,102,241,.15);
  flex-shrink: 0;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder svg { width: 80%; height: 80%; }

.about-card-float {
  position: absolute;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.about-card-float svg { width: 28px; height: 28px; flex-shrink: 0; }
.about-card-float div { display: flex; flex-direction: column; }
.about-card-float strong { font-size: .85rem; }
.about-card-float span { font-size: .75rem; color: var(--text-muted); }
.card-float-1 { top: 20px; left: -20px; animation: floatCard 4s ease-in-out infinite; }
.card-float-2 { bottom: 20px; right: -20px; animation: floatCard 4s ease-in-out infinite reverse; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.value-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: var(--bg-3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-item div strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.value-item div p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ============================
   WHY US
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: var(--transition);
  position: relative;
}
.why-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-4px); }
.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(99,102,241,.15);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.why-card:hover .why-num { color: rgba(99,102,241,.4); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { font-size: .95rem; color: var(--text-muted); line-height: 1.75; }

/* ============================
   TARIFS
   ============================ */
.tarif-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.tarif-notes-mobile { display: none; }
.tarif-chips { display: none; } /* visible uniquement sur mobile via media query */

.tarif-note-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  background: rgba(99,102,241,.07);
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 10px;
  padding: 10px 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.tarif-note-top svg { width: 15px; height: 15px; color: var(--primary-light); flex-shrink: 0; }

.tarif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.tarif-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tarif-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.tarif-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.price-num { font-family: 'Space Grotesk', sans-serif; font-size: 3.5rem; font-weight: 800; line-height: 1; }
.price-unit { font-size: 1.1rem; color: var(--text-muted); }
.tarif-desc { font-size: .95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.tarif-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.tarif-list li { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.check { color: var(--accent); font-weight: 700; font-size: 1rem; flex-shrink: 0; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,.3); }
.testimonial-featured {
  background: linear-gradient(135deg, rgba(99,102,241,.08), var(--bg-2));
  border-color: rgba(99,102,241,.3);
}
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card > p { color: var(--text-muted); font-size: .97rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  background: var(--bg);
}
.author-avatar { background: var(--bg); box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--border); }
.testimonial-author div strong { display: block; font-size: .9rem; }
.testimonial-author div span { font-size: .78rem; color: var(--text-muted); }

/* ============================
   CONTACT
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.contact-info > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-light);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item div { display: flex; flex-direction: column; }
.contact-item strong { font-size: .9rem; margin-bottom: 2px; }
.contact-item span { font-size: .85rem; color: var(--text-muted); }

.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 12px 16px;
  font-size: .9rem;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,.15); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: 12px; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: .87rem; color: var(--text-muted); max-width: 240px; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { border-color: var(--primary); color: var(--primary-light); transform: translateY(-2px); }

.footer-col h4 { font-size: .9rem; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul a { font-size: .84rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.recaptcha-notice {
  font-size: .7rem;
  color: var(--text-muted);
  opacity: .55;
  text-align: center;
  padding: 10px 24px 0;
}
.recaptcha-notice a { color: inherit; text-decoration: underline; }
.recaptcha-notice a:hover { opacity: 1; color: var(--text); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .8rem; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--text); }

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(99,102,241,.4);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 99;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(99,102,241,.5); }

/* ============================
   ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================
   NAVBAR CALL BUTTON
   ============================ */
.btn-call-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(16,185,129,.3);
}
.btn-call-nav svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-call-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,185,129,.45); }

/* ============================
   HERO CALL BUTTON
   ============================ */
.btn-call-hero {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: visible;
  box-shadow: 0 6px 30px rgba(16,185,129,.35);
  text-decoration: none;
}
.btn-call-hero svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-call-hero span { display: flex; flex-direction: column; }
.btn-call-hero strong { font-size: 1.1rem; line-height: 1.2; }
.btn-call-hero small { font-size: .72rem; font-weight: 400; opacity: .85; }
.btn-call-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(16,185,129,.5); }

.btn-call-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #fbbf24;
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.btn-call-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(251,191,36,.4);
  animation: callPulse 1.5s ease-out infinite;
}
@keyframes callPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* ============================
   HERO SPLIT LAYOUT
   ============================ */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* Legacy */
.hero-content { grid-column: 1; }

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 360px;
}

.hv-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}

.hv-card-main {
  width: 340px;
  padding: 20px 24px;
  position: relative;
  z-index: 2;
}

.hv-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.hv-dots { display: flex; gap: 5px; }
.hv-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.hv-dots span:nth-child(1) { background: #ef4444; }
.hv-dots span:nth-child(2) { background: #f59e0b; }
.hv-dots span:nth-child(3) { background: #10b981; }
.hv-title { font-size: .78rem; color: var(--text-muted); font-family: monospace; }

.hv-lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.hv-line { font-size: .8rem; font-family: monospace; display: flex; align-items: center; gap: 8px; }
.hv-icon { width: 18px; text-align: center; font-style: normal; flex-shrink: 0; }
.hv-ok { color: #10b981; }
.hv-warn { color: #f59e0b; }
.hv-line--ok { color: #9aa3b2; }
.hv-line--warn { color: #f59e0b; }
.hv-line--scanning { color: var(--primary-light); }
.hv-scan::before { content: '⟳'; display: inline-block; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hv-blink { animation: blink .8s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hv-progress-bar {
  height: 4px;
  background: var(--bg-2);
  border-radius: 2px;
  overflow: hidden;
}
.hv-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  animation: progressAnim 3s ease-in-out infinite;
}
@keyframes progressAnim {
  0% { width: 0%; }
  60% { width: 85%; }
  80% { width: 85%; }
  100% { width: 0%; }
}

.hv-card-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  position: absolute;
  z-index: 3;
}
.hv-card-mini svg { width: 22px; height: 22px; flex-shrink: 0; }
.hv-card-mini div { display: flex; flex-direction: column; }
.hv-card-mini strong { font-size: .82rem; }
.hv-card-mini span { font-size: .72rem; color: var(--text-muted); }
.hv-mini-1 { top: 20px; right: 20px; animation: floatCard 4s ease-in-out infinite; }
.hv-mini-2 { bottom: 20px; left: 20px; animation: floatCard 4s ease-in-out infinite reverse; }

/* ============================
   WHY US – 4 CARDS WITH ICONS
   ============================ */
.why-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-icon {
  width: 56px; height: 56px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 20px;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card:hover .why-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
.why-card h3 { font-size: 1.08rem; margin-bottom: 12px; }

/* ============================
   GOOGLE REVIEWS
   ============================ */
.google-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.google-logo { width: 28px; height: 28px; flex-shrink: 0; }
.google-score-info { display: flex; flex-direction: column; }
.google-stars-row { display: flex; align-items: center; gap: 8px; }
.google-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.google-rating { font-weight: 800; font-size: 1.2rem; font-family: 'Space Grotesk', sans-serif; }
.google-count { font-size: .75rem; color: var(--text-muted); }

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.author-avatar-lg {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.author-avatar-lg svg { width: 100%; height: 100%; display: block; }
.review-header > div { flex: 1; }
.review-header strong { display: block; font-size: .95rem; }
.review-sub { font-size: .75rem; color: var(--text-muted); display: block; margin-bottom: 3px; }
.stars-sm { color: #f59e0b; font-size: .85rem; letter-spacing: 1px; }
.google-icon { width: 20px; height: 20px; flex-shrink: 0; margin-left: auto; }

/* ============================
   FAQ
   ============================ */
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(99,102,241,.35); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary-light); }
.faq-question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform .3s ease, color .3s ease;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--primary-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: .95rem; color: var(--text-muted); line-height: 1.75; }
.faq-answer strong { color: var(--text); }

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  padding: 6px 24px;
}
.trust-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.trust-item strong { color: var(--text); }
.trust-divider { width: 1px; height: 24px; background: var(--border); }

/* ============================
   HOW IT WORKS
   ============================ */
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step-card {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-4px); }
.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(99,102,241,.1);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  transition: color var(--transition);
}
.step-card:hover .step-number { color: rgba(99,102,241,.25); }
.step-icon {
  width: 52px; height: 52px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 20px;
}
.step-icon svg { width: 26px; height: 26px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.step-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap var(--transition);
}
.step-cta svg { width: 16px; height: 16px; }
.step-cta:hover { gap: 10px; }

.step-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  padding: 4px 12px;
  border-radius: 999px;
}
.step-badge[style] {
  color: #10b981;
  background: rgba(16,185,129,.1);
  border-color: rgba(16,185,129,.2);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex-shrink: 0;
  color: var(--border);
}
.step-connector svg { width: 24px; height: 24px; }

/* ============================
   CARD CTA
   ============================ */

/* ============================
   URGENCE SECTION
   ============================ */
.urgence-section {
  background: linear-gradient(135deg, rgba(16,185,129,.08) 0%, rgba(6,95,70,.15) 100%);
  border-top: 1px solid rgba(16,185,129,.15);
  border-bottom: 1px solid rgba(16,185,129,.15);
  padding: 80px 0;
}
.urgence-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.urgence-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.urgence-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.urgence-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.urgence-text p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; max-width: 480px; }
.urgence-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }

/* ============================
   MOBILE CALL BUTTON
   ============================ */
/* ============================
   WHATSAPP FLOATING BUTTON
   ============================ */
.wa-btn {
  position: fixed;
  bottom: 32px; left: 32px;
  z-index: 97;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition), bottom var(--transition);
  text-decoration: none;
}
.wa-btn svg { width: 30px; height: 30px; }
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
}

.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 97;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: .95rem;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(16,185,129,.5);
  text-decoration: none;
  transition: var(--transition);
}
.mobile-call-btn svg { width: 20px; height: 20px; }
.mobile-call-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 12px; height: 12px;
  background: #fbbf24;
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.mobile-call-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(251,191,36,.4);
  animation: callPulse 1.5s ease-out infinite;
}

/* ============================
   COOKIE CONSENT
   ============================ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.cookie-overlay.visible { opacity: 1; pointer-events: all; }

/* --- Bannière principale --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px 24px;
  transform: translateY(calc(100% + 32px));
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 -4px 60px rgba(0,0,0,.5);
}

.cookie-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.cookie-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  animation: cookieBounce 2s ease-in-out infinite;
}
@keyframes cookieBounce {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.cookie-banner-left h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.cookie-banner-left p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
.cookie-banner-left a { color: var(--primary-light); text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(99,102,241,.4); }

.btn-cookie-refuse {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-refuse:hover { border-color: rgba(255,255,255,.2); color: var(--text); }

.btn-cookie-settings {
  background: rgba(99,102,241,.1);
  color: var(--primary-light);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid rgba(99,102,241,.25);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-settings:hover { background: rgba(99,102,241,.2); }

/* --- Panneau personnalisation --- */
.cookie-panel {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(.95);
  z-index: 1001;
  width: min(580px, calc(100vw - 32px));
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-panel.visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cookie-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-panel-title svg { width: 20px; height: 20px; color: var(--primary-light); }
.cookie-panel-title h3 { font-size: 1.1rem; font-weight: 700; }

.cookie-panel-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.cookie-panel-close svg { width: 16px; height: 16px; }
.cookie-panel-close:hover { background: var(--bg); color: var(--text); }

.cookie-panel-desc {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.cookie-panel-desc a { color: var(--primary-light); text-decoration: underline; }

/* Toggle items */
.cookie-toggles { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }

.cookie-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color var(--transition);
}
.cookie-toggle-item:hover { border-color: rgba(99,102,241,.25); }
.cookie-toggle-required { opacity: .75; }

.cookie-toggle-info { flex: 1; min-width: 0; }
.cookie-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.cookie-toggle-name { font-size: .9rem; font-weight: 600; }
.cookie-required-badge {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.2);
  padding: 2px 8px;
  border-radius: 999px;
}
.cookie-toggle-info p { font-size: .8rem; color: var(--text-muted); line-height: 1.6; }

/* Toggle switch */
.toggle-switch { flex-shrink: 0; cursor: pointer; }
.toggle-switch input { display: none; }
.toggle-track {
  display: block;
  width: 46px; height: 26px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  position: relative;
  transition: background .25s, border-color .25s;
}
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform .25s, background .25s;
}
.toggle-switch input:checked + .toggle-track,
.toggle-track.active {
  background: var(--primary);
  border-color: var(--primary);
}
.toggle-switch input:checked + .toggle-track .toggle-thumb,
.toggle-track.active .toggle-thumb {
  transform: translateX(20px);
  background: #fff;
}
.toggle-locked { cursor: not-allowed; }

/* Panel footer */
.cookie-panel-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Toast confirmation */
.cookie-toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 24px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  z-index: 1100;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: opacity .3s ease, transform .3s ease;
  white-space: nowrap;
}
.cookie-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Bouton rouvrir */
.cookie-reopen {
  position: fixed;
  bottom: 100px; left: 32px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 98;
  opacity: 0;
  transform: scale(.8);
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.cookie-reopen.visible { opacity: 1; transform: scale(1); pointer-events: all; }
.cookie-reopen:hover { transform: scale(1.1); border-color: var(--primary); }

/* ============================
   RESPONSIVE
   ============================ */
/* ============================
   LAPTOP 15–16" (hauteur ~800–960px)
   ============================ */
@media (max-height: 960px) and (min-width: 769px) {
  /* Topbar + navbar plus compacts */
  .topbar { padding: 4px 0; }
  .navbar { top: 28px; padding: 10px 0; }
  .navbar.scrolled { padding: 8px 0; }

  /* Hero : plus de min-height forcé, paddings réduits */
  .hero {
    padding-top: 90px;
    padding-bottom: 32px;
    min-height: auto;
  }
  .hero-badge { margin-bottom: 14px; font-size: .78rem; padding: 4px 14px; }
  .hero-title { font-size: clamp(1.7rem, 3.2vw, 2.6rem); margin-bottom: 12px; }
  .hero-desc { font-size: .9rem; margin-bottom: 22px; line-height: 1.65; }
  .hero-actions { margin-bottom: 28px; gap: 12px; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 1.35rem; }
  .stat-label { font-size: .75rem; }

  /* Trust bar plus fine */
  .trust-bar { padding: 10px 0; }
  .trust-item { font-size: .82rem; gap: 7px; }
  .trust-item svg { width: 15px; height: 15px; }

  /* Sections légèrement réduites */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
}

/* ============================
   TARIFS + CONTACT compacts (laptop 15-16")
   ============================ */
@media (max-height: 960px) and (min-width: 769px) {
  /* Services */
  .service-card { padding: 22px 24px; }
  .card-icon { width: 42px; height: 42px; border-radius: 11px; margin-bottom: 14px; }
  .card-icon svg { width: 21px; height: 21px; }
  .service-card h3 { font-size: 1rem; margin-bottom: 7px; }
  .service-card p { font-size: .88rem; margin-bottom: 14px; line-height: 1.6; }
  .card-list { gap: 5px; }
  .card-list li { font-size: .84rem; }

  /* À propos */
  .about-grid { gap: 48px; }
  .about-img-wrapper { width: 260px; height: 260px; }
  .about-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 12px; }
  .about-text p { font-size: .9rem; line-height: 1.65; margin-bottom: 10px; }
  .about-values { gap: 12px; margin: 18px 0; }
  .value-icon { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 9px; }
  .value-item { gap: 12px; }
  .value-item div strong { font-size: .88rem; }
  .value-item div p { font-size: .8rem; }
  .about-card-float { padding: 9px 13px; }
  .about-card-float svg { width: 22px; height: 22px; }
  .about-card-float strong { font-size: .78rem; }
  .about-card-float span { font-size: .68rem; }

  /* Nos différences */
  .why-card { padding: 22px 24px; }
  .why-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px; }
  .why-icon svg { width: 21px; height: 21px; }
  .why-num { font-size: 2.2rem; margin-bottom: 10px; }
  .why-card h3 { font-size: .97rem; margin-bottom: 8px; }
  .why-card p { font-size: .87rem; line-height: 1.6; }
  .why-grid { gap: 18px; }
  .why-grid-4 { gap: 18px; }

  /* Tarifs */
  .tarif-card { padding: 28px 24px; }
  .price-num { font-size: 2.6rem; }
  .price-unit { font-size: .95rem; }
  .tarif-desc { font-size: .88rem; margin-bottom: 18px; line-height: 1.6; }
  .tarif-list { gap: 8px; margin-bottom: 22px; }
  .tarif-list li { font-size: .88rem; }
  .tarif-notes { margin-bottom: 24px; }
  .tarif-note-top { padding: 7px 16px; font-size: .78rem; }

  /* Contact */
  .contact-grid { gap: 48px; }
  .contact-info h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 12px; }
  .contact-info > p { margin-bottom: 24px; font-size: .9rem; }
  .contact-grid { gap: 36px; }
  .contact-info h2 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); margin-bottom: 8px; }
  .contact-info > p { margin-bottom: 16px; font-size: .85rem; }
  .contact-items { gap: 8px; }
  .contact-item-icon { width: 34px; height: 34px; border-radius: 9px; }
  .contact-item-icon svg { width: 15px; height: 15px; }
  .contact-item strong { font-size: .82rem; }
  .contact-item span { font-size: .77rem; }
  .contact-form { padding: 22px; }
  .form-group { gap: 4px; margin-bottom: 10px; }
  .form-group label { font-size: .75rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 8px 12px; font-size: .85rem; }
  .form-group textarea { min-height: 80px; }
  .form-note { font-size: .72rem; margin-top: 6px; }
}

/* Laptop petit écran (800px de hauteur ou moins) */
@media (max-height: 800px) and (min-width: 769px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 24px;
  }
  .hero-badge { margin-bottom: 10px; }
  .hero-title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 10px; }
  .hero-desc { font-size: .87rem; margin-bottom: 18px; }
  .hero-actions { margin-bottom: 22px; }
  .hero-actions .btn { padding: 10px 20px; font-size: .88rem; }
  .stat-num { font-size: 1.2rem; }

  /* Services encore plus serrés */
  .service-card { padding: 18px 20px; }
  .card-icon { width: 36px; height: 36px; margin-bottom: 10px; }

  /* À propos encore plus serré */
  .about-img-wrapper { width: 220px; height: 220px; }
  .about-values { gap: 9px; margin: 14px 0; }

  /* Nos différences encore plus serrées */
  .why-card { padding: 18px 20px; }
  .why-icon { width: 38px; height: 38px; }
  .why-num { font-size: 2rem; margin-bottom: 8px; }
  .why-grid { gap: 14px; }
  .why-grid-4 { gap: 14px; }

  /* Tarifs encore plus serrés */
  .tarif-card { padding: 22px 20px; }
  .price-num { font-size: 2.2rem; }
  .tarif-list { gap: 6px; margin-bottom: 16px; }

  /* Contact encore plus serré */
  .contact-grid { gap: 24px; }
  .contact-items { gap: 6px; }
  .contact-form { padding: 18px; }
  .form-group { margin-bottom: 8px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 7px 11px; }
  .form-group textarea { min-height: 65px; }
}

@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid,
  .why-grid,
  .why-grid-4,
  .tarif-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}

/* ============================================================
   MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ── Topbar ── */
  .topbar { display: none; }          /* inutile sur mobile, retire le bruit */

  /* ── Navbar ── */
  .navbar { top: 0; }
  .btn-call-nav { display: none; }
  .burger { display: flex; z-index: 100; }
  body.menu-open { overflow: hidden; }
  /* Menu desktop caché sur mobile */
  .nav-links-desktop { display: none !important; }

  /* Menu mobile — élément indépendant hors de la navbar */
  .nav-mobile {
    display: flex;
    position: fixed;
    inset: 0;
    background: #0a0a10;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 200;
  }
  .nav-mobile.open { transform: translateX(0); }
  .nav-mobile a:not(.btn) { font-size: 1.4rem; font-weight: 600; color: var(--text); text-decoration: none; }
  .nav-mobile .btn-call-nav { display: none; }
  .burger { z-index: 201; }
  .nav-mobile-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
  }
  .nav-mobile-close svg { width: 20px; height: 20px; }

  /* ── Bouton d'appel fixe ── */
  .mobile-call-btn { display: none; }

  /* ── Hero ── */
  .hero {
    padding-top: 96px;
    padding-bottom: 56px;
    min-height: auto;
    text-align: center;
  }
  .hero-left { align-items: center; }
  .hero-badge { font-size: .75rem; padding: 5px 14px; margin-top: 10px; margin-bottom: 18px; }
  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .hero-desc { font-size: .97rem; line-height: 1.7; margin-bottom: 24px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 36px;
    width: 100%;
  }
  .hero-actions .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 14px 20px; }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
  .stat-divider { display: none; }
  .stat-item { text-align: center; }

  /* ── Trust bar ── */
  .trust-bar { padding: 10px 0; }
  .trust-bar-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-x: unset;
    flex-wrap: unset;
    justify-content: unset;
    align-items: stretch;
  }
  .trust-divider { display: none; }
  .trust-item {
    flex-shrink: unset;
    padding: 9px 16px;
    font-size: .82rem;
    white-space: normal;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 10px;
  }
  .trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

  /* ── Sections ── */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.75rem; }
  .section-header .h2-nowrap { white-space: normal; font-size: 1.65rem; }
  .section-header p { font-size: .95rem; }
  .container { padding-left: 20px; padding-right: 20px; }

  /* ── Grilles → 1 colonne ── */
  .services-grid,
  .why-grid,
  .why-grid-4,
  .tarif-grid,
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── Cartes services & différences ── */
  .service-card,
  .why-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .card-icon { width: 44px; height: 44px; margin-bottom: 14px; }
  .service-card h3,
  .why-card h3 { font-size: 1.05rem; }
  .service-card p,
  .why-card p { font-size: .9rem; line-height: 1.65; }

  /* ── Tarifs ── */
  .tarif-card { padding: 24px 18px; border-radius: 14px; }
  .tarif-label { font-size: .75rem; }
  .price-num { font-size: 2.8rem; }
  .tarif-desc { font-size: .88rem; margin-bottom: 18px; }
  .tarif-list li { font-size: .9rem; }

  /* ── À propos ── */
  .about-text h2 { font-size: 1.7rem; margin-bottom: 14px; }
  .about-text p { font-size: .92rem; line-height: 1.7; }
  .about-values { gap: 14px; margin: 20px 0; }
  .value-item div strong { font-size: .9rem; }
  .value-item div p { font-size: .82rem; }

  /* ── Steps ── */
  .steps-grid { flex-direction: column; gap: 16px; }
  .step-connector { display: none; }
  .step { padding: 20px; border-radius: 14px; }

  /* ── Urgence ── */
  .urgence-section { padding: 48px 0; }
  .urgence-inner { flex-direction: column; gap: 28px; text-align: center; }
  .urgence-text h2 { font-size: 1.7rem; }
  .urgence-text p { font-size: .92rem; }
  .urgence-actions { width: 100%; display: flex; flex-direction: column; gap: 12px; }
  .urgence-actions .btn-call-hero,
  .urgence-actions .btn-ghost { width: 100%; justify-content: center; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 22px 18px; border-radius: 14px; }

  /* ── FAQ ── */
  .faq-question { padding: 18px 0; font-size: .97rem; min-height: 56px; }
  .faq-answer p { font-size: .9rem; line-height: 1.7; }

  /* ── Contact ── */
  .contact-info h2 { font-size: 1.7rem; }
  .contact-form { padding: 22px 16px; border-radius: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 14px; }
  .form-group label { font-size: .8rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; padding: 12px 14px; } /* 16px évite le zoom iOS */
  .form-group textarea { min-height: 100px; }

  /* ── Footer ── */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }
  .footer-col h4 { font-size: .9rem; }

  /* ── Boutons flottants ── */
  .back-to-top   { bottom: 24px; right: 16px; width: 44px; height: 44px; }
  .wa-btn        { bottom: 24px; left: 12px;  width: 50px; height: 50px; }
  .wa-btn svg    { width: 26px; height: 26px; }

  /* ── Tarif notes ── */
  .tarif-notes { gap: 6px; margin-bottom: 20px; }
  .tarif-note-top { display: none; }
  .tarif-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .tarif-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--primary-light);
    background: rgba(99,102,241,.1);
    border: 1px solid rgba(99,102,241,.25);
    border-radius: 999px;
    padding: 6px 12px;
    white-space: nowrap;
  }
  .tarif-chip svg { width: 13px; height: 13px; flex-shrink: 0; }

  /* ── Cookie banner ── */
  .cookie-banner { padding: 0 10px 12px; }
  .cookie-banner-inner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 14px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px;
  }
  .cookie-icon { font-size: 1.5rem; }
  .cookie-banner-left { gap: 12px; }
  .cookie-banner-left h3 { font-size: .92rem; margin-bottom: 4px; }
  .cookie-banner-left p { font-size: .78rem; line-height: 1.5; }
  .cookie-banner-actions { width: 100%; flex-direction: column; gap: 8px; }
  .cookie-banner-actions .btn-cookie-accept,
  .cookie-banner-actions .btn-cookie-refuse,
  .cookie-banner-actions .btn-cookie-settings {
    width: 100%;
    text-align: center;
    padding: 11px 16px;
    font-size: .82rem;
  }
  /* Panneau personnalisation */
  .cookie-panel { padding: 20px 14px; max-height: 90vh; }
  .cookie-panel-header { margin-bottom: 12px; }
  .cookie-toggle-item { padding: 14px 14px; }
  .cookie-toggle-info strong { font-size: .88rem; }
  .cookie-toggle-info p { font-size: .75rem; }
  .cookie-panel-footer { flex-direction: column; gap: 8px; }
  .cookie-panel-footer button { width: 100%; text-align: center; }
  /* Bouton reopen cookie visible sur mobile, au-dessus du bouton WhatsApp */
  .cookie-reopen {
    display: flex !important;
    bottom: 84px;
    left: 12px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ============================================================
   PETIT MOBILE  (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
  .hero-title { font-size: 1.7rem; }
  .section-header h2 { font-size: 1.5rem; }
  .price-num { font-size: 2.4rem; }
  .container { padding-left: 16px; padding-right: 16px; }
}


/* ============================
   STICKY DESKTOP CTA
   ============================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,17,23,.97);
  border-top: 1px solid rgba(99,102,241,.25);
  backdrop-filter: blur(16px);
  z-index: 90;
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 30px rgba(0,0,0,.4);
}
.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
}
.sticky-cta-text svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.sticky-cta-text strong { color: var(--text); }
.sticky-cta-btn { font-size: .88rem; padding: 10px 22px; }

.sticky-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.sticky-wa-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.sticky-wa-btn:hover { background: #1ebe5c; transform: translateY(-1px); }

@media (max-width: 768px) {
  .sticky-cta { display: none; }
}

/* ============================
   FORM SUCCESS MESSAGE
   ============================ */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-top: 16px;
  animation: fadeInUp .4s ease;
}
.form-success svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.form-success div { display: flex; flex-direction: column; gap: 4px; }
.form-success strong { font-size: 1rem; color: var(--text); }
.form-success p { font-size: .88rem; color: var(--text-muted); margin: 0; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
