/* ============================================================
   NBS, PAGE AVOCATS, CSS COMPLET CORRIGÉ
   Design System "Cyber-Sérénité Chaude", Thème Or/Bordeaux
   ============================================================ */

:root {
  --bg: #0d0f14;
  --surface: rgba(13, 15, 20, .65);
  --surface-strong: rgba(255, 255, 255, .05);
  --text: #fafafa;
  --muted: #94a3b8;
  --muted-light: #cbd5e1;
  --line: rgba(255, 255, 255, .08);

  /* === SERVICE COLOR, Avocats : Or/Bordeaux === */
  --service-color:       #7a1f2b;
  --service-color-light: #a63446;
  --service-color-dark:  #4e111a;
  --service-color-r:     180;
  --service-color-g:     83;
  --service-color-b:     9;
  --card-border:         rgba(122, 31, 43, 0.18);
  --card-border-hover:   rgba(122, 31, 43, 0.45);

  /* Bordeaux premium (identité visuelle page) */
  --accent: #7a1f2b;
  --accent-2: #a63446;
  --accent-dark: #4e111a;
  --accent-amber: #f1d570;

  /* CTA, toujours orange NBS */
  --cta-primary-start: #cca43b;
  --cta-primary-end:   #f1d570;

  /* Cyan IA, réservé NeoOne */
  --cyan-ia: #14b8a6;

  --shadow: 0 18px 55px rgba(0, 0, 0, .4);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .2);
  --shadow-hover: 0 22px 70px rgba(122, 31, 43, .28);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1400px;
}

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

html, body {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
strong { color: var(--text); }

/* ============================================================
   FOND, Grille + Orbs thématisés Bordeaux/Or
   ============================================================ */
.nbs-bg-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.nbs-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122, 31, 43, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 31, 43, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.nbs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.nbs-orb-1 {
  top: -10%; left: -10%;
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(122, 31, 43, 0.10) 0%, transparent 70%);
}

.nbs-orb-2 {
  bottom: -10%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.07) 0%, transparent 70%);
}

.nbs-orb-3 {
  top: 40%; left: 30%;
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, rgba(146, 64, 14, 0.06) 0%, transparent 70%);
}

/* ============================================================
   ANIMATIONS GLOBALES
   ============================================================ */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulse-service {
  0%   { box-shadow: 0 0 0 0 rgba(122, 31, 43, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(122, 31, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(122, 31, 43, 0); }
}

@keyframes scan {
  0%   { top: -4px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 15, 20, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 42px; height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid;
  place-items: center;
  box-shadow: 0 14px 35px rgba(122, 31, 43, .30);
  color: white;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
  align-items: center;
}

.nav-links a {
  padding: .5rem .6rem;
  border-radius: 12px;
  transition: background .15s ease, color .15s ease;
}

.nav-links a:hover {
  background: rgba(122, 31, 43, 0.06);
  color: var(--text);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: .7rem;
}

/* ============================================================
   BOUTONS, CTA toujours orange NBS
   ============================================================ */
.btn {
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: transform .06s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  user-select: none;
  white-space: nowrap;
  font-family: inherit;
  font-size: 1rem;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

/* CTA Principal, ORANGE NBS, sans exception */
.btn-primary {
  background: linear-gradient(135deg, var(--cta-primary-start), var(--cta-primary-end)) !important;
  color: #0d0f14 !important;
  font-weight: 800 !important;
  box-shadow: 0 0 28px rgba(204, 164, 59, 0.35);
  border: none !important;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(204, 164, 59, 0.55);
  transform: translateY(-2px);
  color: #0d0f14 !important;
}

/* Secondaire, bordeaux transparent */
.btn-outline {
  background: rgba(122, 31, 43, .06);
  border-color: rgba(122, 31, 43, .35);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(122, 31, 43, .14);
  border-color: rgba(122, 31, 43, .55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

/* Ghost */
.btn-ghost {
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: .55rem;
  cursor: pointer;
  transition: background .15s ease, box-shadow .15s ease, border-color .15s ease;
  font-family: inherit;
  font-size: 1rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(122, 31, 43, .22);
}

/* Pill buttons dans final-cta */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}

.btn-pill-dark {
  background: linear-gradient(135deg, #cca43b, #f1d570);
  color: #0d0f14 !important;
  box-shadow: 0 0 28px rgba(204, 164, 59, 0.35);
  border: none;
}

.btn-pill-dark:hover {
  box-shadow: 0 0 40px rgba(204, 164, 59, 0.55);
  transform: translateY(-2px);
}

.btn-pill-light {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(204, 164, 59, 0.25);
}

.btn-pill-light:hover {
  border-color: #cca43b;
  color: #cca43b;
  background: rgba(204, 164, 59, 0.05);
  transform: translateY(-2px);
}

.icon {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   GLASS CARD, thématisée service
   ============================================================ */
.glass {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-card {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: all .4s ease;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-border-hover);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--service-color), transparent);
  opacity: 0;
  transition: opacity .4s ease;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.glass-card:hover::before { opacity: 1; }

/* Pulse dot service */
.pulse-dot {
  width: 10px; height: 10px;
  background: var(--service-color);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-service 2s infinite;
}

/* ============================================================
   HERO
   ============================================================ */
.header-hero {
  background: transparent;
  padding: clamp(2.6rem, 3vw + 2rem, 4.1rem) 0 1.4rem;
  position: relative;
  overflow: visible;
}

.header-hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(122, 31, 43, .16), transparent 70%),
    radial-gradient(1000px 700px at 80% 20%, rgba(122, 31, 43, .12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-wrap {
  padding: 0;
  position: relative;
  z-index: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(1.2rem, 2.5vw, 2.1rem);
  align-items: center;
}

/* Kicker badge */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(122, 31, 43, .08);
  border: 1px solid rgba(122, 31, 43, .18);
  color: var(--service-color-light);
  font-weight: 800;
  font-size: .88rem;
  margin-bottom: 1.35rem;
}

h1 {
  margin: 1rem 0 .75rem;
  font-size: clamp(2.05rem, 3.1vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--text);
}

.accent-word {
  background: linear-gradient(135deg, var(--cta-primary-start), var(--cta-primary-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 1.15rem;
  font-size: clamp(1rem, .55vw + .95rem, 1.12rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: .9rem;
}

.call {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  font-weight: 800;
  padding: .35rem .6rem;
  border-radius: 12px;
  border: 1px dashed rgba(122, 31, 43, .22);
  background: rgba(255, 255, 255, .03);
  transition: color .2s;
}

.call:hover { color: var(--text); }

.proofs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .35rem;
}

.proof {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .48rem .72rem;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: .93rem;
  transition: transform .12s ease, box-shadow .15s ease;
}

.proof:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

.dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--service-color);
  box-shadow: 0 0 0 4px rgba(122, 31, 43, .12);
}

/* ============================================================
   HERO VISUAL, Photo + Floating Cards
   ============================================================ */
.visual {
  position: relative;
  border-radius: 24px;
  overflow: visible;
  min-height: 460px;
}

.visual-media {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(900px 520px at 30% 0%, rgba(122, 31, 43, .22), transparent 60%),
    linear-gradient(135deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .06)),
    url("https://www.neobyteservices.fr/wp-content/uploads/2026/04/hero-avocat.webp") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.03);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 75%);
}

/* Halo derrière la photo */
.visual-halo {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 31, 43, 0.22) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Floating Cards */
.f-card {
  position: absolute;
  background: rgba(13, 15, 20, 0.30);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
  z-index: 10;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  min-width: 150px;
}

.f-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.01em;
  line-height: 1.2;
}

.f-card-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: .2rem;
}

.f-card-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: .6rem;
}

/* Uptime, haut gauche, service color */
.fc-uptime {
  top: 8%;
  left: -6%;
  animation: floatY 4s ease-in-out infinite;
  border-color: rgba(122, 31, 43, 0.35);
}

.fc-uptime .f-card-icon { background: rgba(122, 31, 43, .15); }
.fc-uptime .f-card-title { color: var(--service-color-light); }

/* Réponse < 4h, milieu gauche, ambre (métrique clé NBS) */
.fc-response {
  top: 42%;
  left: -8%;
  animation: floatY 4s ease-in-out infinite;
  animation-delay: .8s;
  border-color: rgba(241, 213, 112, 0.35);
}

.fc-response .f-card-icon { background: rgba(241, 213, 112, .12); }
.fc-response .f-card-title { color: #f1d570; }

/* Surveillance 24/7, haut droite, service color */
.fc-surveillance {
  top: 8%;
  right: 2%;
  animation: floatY 4s ease-in-out infinite;
  animation-delay: 1.6s;
  border-color: rgba(122, 31, 43, 0.35);
}

.fc-surveillance .f-card-icon { background: rgba(122, 31, 43, .15); }
.fc-surveillance .f-card-title { color: var(--service-color-light); }

/* Équipe, bas droite */
.fc-team {
  bottom: 12%;
  right: 2%;
  animation: floatY 4s ease-in-out infinite;
  animation-delay: 2.4s;
  border-color: rgba(255, 255, 255, .12);
}

.fc-team-avatars {
  display: flex;
  gap: -.4rem;
  margin-bottom: .5rem;
}

.fc-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #0d0f14;
  display: grid;
  place-items: center;
  font-size: .7rem;
  font-weight: 900;
  color: #0d0f14;
  margin-left: -6px;
}

.fc-avatar:first-child { margin-left: 0; }

/* Bulle citation */
.nbs-quote-bubble {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(122, 31, 43, 0.10);
  border: 1px solid var(--service-color);
  border-radius: 12px;
  padding: .65rem 1.1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted-light);
  white-space: nowrap;
  z-index: 10;
  font-style: italic;
}

/* Badge hero (ancien) */
.badge {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
}

.badge strong { font-size: 1rem; letter-spacing: -.01em; }
.badge span { display: block; color: var(--muted); font-weight: 700; margin-top: .18rem; font-size: .95rem; }

.mini-icons { display: flex; gap: .55rem; align-items: center; flex-shrink: 0; }

.mini {
  width: 44px; height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 31, 43, .22);
  background: linear-gradient(135deg, rgba(122, 31, 43, .12), rgba(255, 255, 255, .03));
  color: var(--service-color);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}

.mini svg { width: 22px; height: 22px; stroke: var(--service-color); }

/* ============================================================
   SEO INTRO BLOCK, dark glassmorphism
   ============================================================ */
.seo-intro-block {
  margin: 3rem 0;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(122, 31, 43, 0.18) !important;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.seo-intro-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--service-color), transparent);
}

.seo-intro-block h2 {
  font-size: 1.6rem;
  color: var(--text) !important;
  margin-bottom: 1rem;
}

.seo-intro-block p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted) !important;
  font-weight: 500;
  margin-bottom: 1rem;
}

.seo-intro-block p:last-child { margin-bottom: 0; }

.seo-intro-block a {
  color: var(--service-color-light) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   PANELS / STATS / ISSUES
   ============================================================ */
.header-panels { margin-top: 1.2rem; position: relative; }

.risks-section {
  background: transparent;
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
  position: relative;
  z-index: 1;
}

.panel {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.header-hero .panel,
.risks-section .panel {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.panel-inner { padding: 1.35rem; }

.header-hero .panel-inner,
.risks-section .panel-inner { padding: 1.25rem 0 0; }

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
}

.panel-title h2 { margin: 0; font-size: 1.15rem; letter-spacing: -.02em; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 31, 43, .22);
  background: rgba(255, 255, 255, .04);
  color: var(--service-color-light);
  font-weight: 900;
  font-size: .85rem;
  white-space: nowrap;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 1.15rem 1.1rem;
  transition: transform .12s ease, box-shadow .16s ease, border-color .16s ease;
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 170px; height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(122, 31, 43, .14), transparent 60%);
  pointer-events: none;
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(122, 31, 43, .18);
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .6rem;
  position: relative;
}

.stat .num {
  font-size: 2.1rem;
  font-weight: 950;
  letter-spacing: -.03em;
  color: var(--service-color-light);
}

.stat p { margin: 0; color: var(--muted); font-weight: 700; line-height: 1.45; position: relative; }
.stat small { color: var(--muted); font-weight: 700; }

.stat-icon {
  width: 42px; height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 31, 43, .20);
  background: linear-gradient(135deg, rgba(122, 31, 43, .10), rgba(255, 255, 255, .03));
  box-shadow: 0 10px 22px rgba(0, 0, 0, .07);
  color: var(--service-color);
  flex-shrink: 0;
  position: relative;
}

/* Issues */
.issues-intro {
  margin: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 95ch;
  font-weight: 700;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.issue {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  position: relative;
  transition: transform .12s ease, box-shadow .16s ease, border-color .16s ease;
  overflow: hidden;
}

.issue:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(122, 31, 43, .18);
}

.issue::before {
  content: "";
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: rgba(122, 31, 43, .75);
}

/* Scan line sur les issue cards */
.issue::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: rgba(122, 31, 43, 0.6);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.issue:hover::after {
  opacity: 1;
  animation: scan 3.5s linear infinite;
}

.issue-icon {
  width: 46px; height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: 1px solid rgba(122, 31, 43, .22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
  flex-shrink: 0;
  margin-top: .05rem;
}

.issue-icon svg {
  width: 24px; height: 24px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.issue-content h3 { margin: 0 0 .25rem; font-size: 1rem; letter-spacing: -.01em; color: var(--text); font-weight: 900; }
.issue-content p { margin: 0; color: var(--muted); font-weight: 700; line-height: 1.45; }

.consequences {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1rem;
  display: grid;
  gap: .75rem;
}

.consequences h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -.01em;
  font-weight: 950;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.consequences ul {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem .9rem;
}

.consequences li {
  background: rgba(122, 31, 43, .05);
  border: 1px solid rgba(122, 31, 43, .15);
  border-radius: 16px;
  padding: .8rem .9rem;
  color: var(--text);
  font-weight: 750;
  line-height: 1.35;
  display: flex;
  gap: .55rem;
  align-items: flex-start;
}

.consequences li svg { width: 18px; height: 18px; stroke: var(--service-color); margin-top: .08rem; }

/* Guide pratique link block */
.guide-link-block {
  background: rgba(122, 31, 43, 0.05);
  border: 1px solid rgba(122, 31, 43, 0.15);
  border-left: 4px solid var(--service-color);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2.5rem;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.guide-link-block:hover { transform: translateX(4px); }

.guide-link-label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  color: var(--service-color-light);
  margin-bottom: .4rem;
}

.guide-link-block a {
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}

.guide-link-block a:hover { color: var(--service-color-light); }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider-wrap { background: transparent; padding: 1.4rem 0 0; position: relative; z-index: 1; }

.section-divider {
  margin: 0 auto;
  height: 1px;
  width: min(860px, 100%);
  background: linear-gradient(90deg, transparent, rgba(122, 31, 43, .22), transparent);
}

/* ============================================================
   SOLUTION
   ============================================================ */
.solution { padding: 3.2rem 0; }

.solution-card { margin-top: 1rem; }

.solution-head {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.6rem;
  align-items: stretch;
}

.solution h2 {
  margin: .65rem 0 .75rem;
  font-size: clamp(1.65rem, 1.8vw + 1rem, 2.15rem);
  letter-spacing: -.02em;
}

.solution-intro {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
  max-width: 78ch;
  margin: 0 0 1.25rem;
}

.solution-ctas { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.solution-visual {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
}

.solution-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 25% 0%, rgba(122, 31, 43, .22), transparent 60%),
    linear-gradient(135deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .06)),
    url("https://www.neobyteservices.fr/wp-content/uploads/2026/04/solution-equipe.webp") center/cover no-repeat;
  transform: scale(1.02);
}

.solution-floating {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
  padding: 1rem 1.05rem;
  backdrop-filter: blur(12px);
}

.floating-title { display: flex; align-items: center; gap: .6rem; margin-bottom: .25rem; }

.floating-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--service-color);
  box-shadow: 0 0 0 4px rgba(122, 31, 43, .12);
  animation: pulse-service 2s infinite;
}

.floating-sub { color: #fff; font-weight: 700; line-height: 1.35; margin-bottom: .85rem; }

.floating-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}

.metric {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: .75rem;
  text-align: center;
  transition: transform .12s ease, box-shadow .16s ease;
}

.metric:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0, 0, 0, .12); }

.metric-num { font-weight: 950; letter-spacing: -.02em; color: var(--text); }
.metric-label { margin-top: .15rem; color: #fff; font-weight: 800; font-size: .85rem; }

/* Pillars */
.pillars {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pillar {
  background: transparent;
  border: none;
  padding: 1rem 0;
  position: relative;
  overflow: visible;
}

.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(122, 31, 43, .12), rgba(255, 255, 255, .03));
  border: 1px solid rgba(122, 31, 43, .22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
  margin-bottom: .85rem;
}

.pillar-icon svg { width: 24px; height: 24px; stroke: var(--service-color-light); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { margin: 0 0 .4rem; color: var(--text); letter-spacing: -.01em; font-weight: 950; }
.pillar p { margin: 0; color: var(--muted); font-weight: 750; line-height: 1.45; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 2.6rem 0 3.4rem; }

.pricing-head h2 {
  margin: .7rem 0 .35rem;
  font-size: clamp(1.65rem, 1.8vw + 1rem, 2.15rem);
  letter-spacing: -.02em;
}

.pricing-sub { margin: 0; color: var(--muted); font-weight: 750; line-height: 1.5; max-width: 80ch; }

.pricing-ctas { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .75rem; }

.table-hint {
  display: none;
  margin: 1rem 0 .6rem;
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
  align-items: center;
  gap: .75rem;
}

.table-hint .hint-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(122, 31, 43, .28), transparent);
}

.pricing-table-wrap {
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  box-shadow: var(--shadow-soft);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 1040px;
}

.pricing-table thead th {
  padding: 1rem .9rem;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  vertical-align: top;
}

.pricing-table th,
.pricing-table td { border-right: 1px solid rgba(255, 255, 255, .08); }

.pricing-table th:last-child,
.pricing-table td:last-child { border-right: none; }

.feature-col { width: 320px; text-align: left; font-weight: 950; color: var(--text); }

.sticky-col {
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, .05);
}

.pricing-table thead .sticky-col { z-index: 3; }

.pricing-table tbody td {
  padding: .85rem .9rem;
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-weight: 750;
}

.pricing-table tbody tr:hover td { background: rgba(255, 255, 255, .05); }
.pricing-table tbody tr:hover .sticky-col { background: rgba(255, 255, 255, .05); }

.plan {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .05);
  padding: .85rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
  text-align: left;
}

.plan-name { font-weight: 950; letter-spacing: -.01em; color: var(--text); }

.plan-price {
  margin-top: .35rem;
  font-weight: 950;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: var(--text);
}

.plan-price span { color: var(--muted); font-weight: 800; font-size: .9rem; margin-left: .25rem; }

.plan.popular {
  border-color: rgba(122, 31, 43, .30);
  background:
    radial-gradient(420px 220px at 20% 0%, rgba(122, 31, 43, .16), transparent 60%),
    rgba(255, 255, 255, .05);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
  position: relative;
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #cca43b, #f1d570);
  color: #0d0f14;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: .55rem;
}

.plan-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: .75rem;
  padding: .55rem .75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #cca43b, #f1d570);
  color: #0d0f14;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(204, 164, 59, 0.3);
}

.group-row td {
  padding: .95rem .9rem;
  background: linear-gradient(90deg, rgba(122, 31, 43, .10), rgba(255, 255, 255, .03));
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.group-title { font-weight: 950; color: var(--text); }

.group-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(122, 31, 43, .22);
  background: rgba(255, 255, 255, .03);
  color: var(--service-color-light);
  font-weight: 950;
}

.group-icon { width: 18px; height: 18px; stroke: var(--service-color-light); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.yes { text-align: center; font-weight: 950; font-size: 1rem; color: #22c55e; }
.no  { text-align: center; font-weight: 950; font-size: 1rem; color: #b91c1c; }

.popular-cell {
  background:
    radial-gradient(420px 220px at 20% 0%, rgba(122, 31, 43, .08), transparent 60%),
    rgba(255, 255, 255, .04);
}

.pricing-foot {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.pricing-foot .note {
  flex: 1;
  min-width: 260px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}

/* ============================================================
   OFFERS SECTION
   ============================================================ */
.offers-neobyteservices {
  background: transparent;
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
  position: relative;
  z-index: 1;
}

.offers-neobyteservices h2 {
  margin: .65rem 0 .5rem;
  font-size: clamp(1.65rem, 1.8vw + 1rem, 2.15rem);
  letter-spacing: -.02em;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.offer-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .12s ease, box-shadow .16s ease, border-color .16s ease;
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--card-border-hover);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--service-color), transparent);
  opacity: 0;
  transition: opacity .4s ease;
}

.offer-card:hover::before { opacity: 1; }

/* Scan line sur offer cards */
.offer-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: rgba(122, 31, 43, 0.5);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.offer-card:hover::after {
  opacity: 1;
  animation: scan 3.5s linear infinite;
}

.offer-card.popular {
  border: 2px solid rgba(122, 31, 43, .45);
  box-shadow: 0 16px 44px rgba(122, 31, 43, .14);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, #cca43b, #f1d570);
  color: #0d0f14;
  font-size: .78rem;
  font-weight: 900;
  padding: .3rem .85rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: .5rem;
}

.offer-header { display: flex; align-items: center; gap: 1rem; }

.offer-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(122, 31, 43, .10), rgba(255, 255, 255, .03));
  border: 1px solid rgba(122, 31, 43, .2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .07);
  flex-shrink: 0;
  overflow: hidden;
}

.offer-icon svg { width: 24px !important; height: 24px !important; max-width: 24px; max-height: 24px; stroke: var(--service-color-light); }

.offer-title-wrap { flex: 1; min-width: 0; }
.offer-title h3 { margin: 0 0 .2rem; font-size: 1.05rem; font-weight: 900; letter-spacing: -.01em; color: var(--text); }

.offer-pricing-row { display: flex; align-items: baseline; gap: .25rem; }
.offer-price { font-size: 1.2rem; font-weight: 950; color: var(--text); letter-spacing: -.02em; }
.offer-price span { font-size: .85rem; font-weight: 700; color: var(--muted); }

.offer-desc { margin: 0; color: var(--muted); font-size: .9rem; font-weight: 700; line-height: 1.45; }

.offer-image-container { border-radius: 12px; overflow: hidden; height: 160px; }
.offer-image-container img { width: 100%; height: 100%; object-fit: cover; display: block; }

.offer-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }

.offer-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.feature-icon-wrap {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(122, 31, 43, .07);
  border: 1px solid rgba(122, 31, 43, .12);
  flex-shrink: 0;
  overflow: hidden;
}

.feature-icon-wrap svg { width: 14px !important; height: 14px !important; max-width: 14px; max-height: 14px; stroke: var(--service-color-light); }

.offer-features-header {
  font-size: .78rem;
  font-weight: 900;
  color: var(--service-color-light);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: .6rem;
}

.offers-action-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: 1.75rem;
  justify-content: center;
}

/* ============================================================
   WHY NBS, dark glassmorphism (correction fond blanc)
   ============================================================ */
.why-neobyteservices {
  background: transparent !important; /* CORRECTION : supprime le fond clair */
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
  position: relative;
  z-index: 1;
}

.why-neobyteservices h2 {
  margin: .65rem 0 .5rem;
  font-size: clamp(1.65rem, 1.8vw + 1rem, 2.15rem);
  letter-spacing: -.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform .12s ease, box-shadow .16s ease, border-color .16s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--card-border-hover);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--service-color), transparent);
  opacity: 0;
  transition: opacity .4s ease;
}

.feature-card:hover::before { opacity: 1; }

.feature-card.featured {
  border: 1px solid rgba(122, 31, 43, .28);
  background: linear-gradient(135deg, rgba(122, 31, 43, .06), rgba(255, 255, 255, .04));
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(122, 31, 43, .12), rgba(255, 255, 255, .03));
  border: 1px solid rgba(122, 31, 43, .2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  flex-shrink: 0;
  overflow: hidden;
}

.feature-icon svg {
  width: 26px !important; height: 26px !important;
  max-width: 26px; max-height: 26px;
  stroke: var(--service-color-light);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 { margin: 0 0 .2rem; font-size: 1.05rem; font-weight: 900; letter-spacing: -.01em; color: var(--text); }
.feature-card p  { margin: 0; color: var(--muted); font-size: .9rem; font-weight: 700; line-height: 1.5; }

.metrics-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .5rem; }

.metric-small {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: .65rem .85rem;
  flex: 1;
  min-width: 80px;
}

.metric-value { font-size: 1.1rem; font-weight: 950; color: var(--service-color-light); letter-spacing: -.02em; }
.metric-label { font-size: .78rem; font-weight: 700; color: var(--muted); margin-top: .1rem; }

.section-intro {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
  max-width: 78ch;
  margin: 0 0 .5rem;
  font-size: clamp(.95rem, .4vw + .9rem, 1.05rem);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: transparent;
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
  position: relative;
  z-index: 1;
}

.faq-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.faq-head {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.faq-head h2 { margin: .6rem 0 .4rem; font-size: clamp(1.5rem, 1.6vw + 1rem, 2rem); letter-spacing: -.02em; }
.faq-intro   { margin: 0; color: var(--muted); font-weight: 700; line-height: 1.5; }

.faq-list { padding: 0 2rem; }

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: block;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: .97rem;
  color: var(--text);
  transition: color .15s ease;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }
.faq-question:hover { color: var(--service-color-light); }
.faq-question span { flex: 1; line-height: 1.45; }

.faq-icon {
  width: 22px; height: 22px; min-width: 22px;
  stroke: var(--service-color-light);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon    { transform: rotate(45deg); }
.faq-item[open] .faq-question { color: var(--service-color-light); }

.faq-answer { padding: 0 0 1.1rem; color: var(--muted); font-weight: 700; line-height: 1.6; }
.faq-answer p { margin: 0; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: transparent;
  padding: clamp(3rem, 5vw, 5.5rem) 0;
  position: relative;
  z-index: 1;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.cta-content-left { display: flex; flex-direction: column; gap: 1.25rem; }

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(122, 31, 43, .08);
  border: 1px solid rgba(122, 31, 43, .18);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .78rem;
  font-weight: 900;
  color: var(--service-color-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  width: fit-content;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.2vw + 1.2rem, 2.8rem);
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--text);
}

.lead-text {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
  font-size: clamp(.95rem, .4vw + .9rem, 1.05rem);
  max-width: 52ch;
}

.offer-text { flex: 1; }
.offer-text strong { display: block; font-size: .97rem; font-weight: 900; color: var(--text); margin-bottom: .2rem; }
.offer-text strong span { color: var(--service-color-light); }
.offer-text p { margin: 0; color: var(--muted); font-size: .88rem; font-weight: 700; }

.cta-button-group { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.final-contact-info { display: flex; gap: .65rem; flex-wrap: wrap; align-items: center; }

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 100px;
  padding: .5rem 1rem;
  font-size: .88rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  transition: background .15s, border-color .15s;
}

.contact-pill:hover {
  background: transparent;
  border-color: rgba(122, 31, 43, .35);
  color: var(--service-color-light);
}

.working-hours { display: block; font-size: .82rem; font-weight: 700; color: var(--muted); }

/* Guide Card, bordeaux premium */
.cta-card-right { display: flex; flex-direction: column; }

.guide-card {
  background: linear-gradient(135deg, rgba(122, 31, 43, 0.25) 0%, rgba(78, 17, 26, 0.35) 100%);
  border: 1px solid rgba(122, 31, 43, 0.30);
  border-radius: 24px;
  padding: 1.75rem 1.65rem 1.6rem;
  box-shadow: 0 24px 60px rgba(122, 31, 43, .35);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.guide-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(122, 31, 43, .12);
}

.guide-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(122, 31, 43, .10);
}

.pdf-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 100px;
  padding: .2rem .75rem;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.guide-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1.3;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.guide-card > p {
  margin: 0;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(255, 255, 255, .8);
  position: relative;
  z-index: 1;
}

.guide-stats { display: flex; gap: .65rem; flex-wrap: wrap; position: relative; z-index: 1; }

.stat-micro-pill {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  padding: .4rem .85rem .4rem .4rem;
}

.stat-icon { width: 28px; height: 28px; flex-shrink: 0; }
.smp-text  { display: flex; flex-direction: column; line-height: 1.2; }
.smp-value { font-size: .82rem; font-weight: 900; color: #ffffff; }
.smp-label { font-size: .72rem; font-weight: 700; color: rgba(255, 255, 255, .7); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .92);
  color: #7a1f2b;
  border-radius: 12px;
  padding: .85rem 1.4rem;
  font-size: .95rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  transition: transform .12s ease, box-shadow .15s ease;
  position: relative;
  z-index: 1;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
  background: #ffffff;
}

.no-commitment {
  display: block;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  position: relative;
  z-index: 1;
}

/* Launch offer card */
.launch-offer-card {
  background: rgba(122, 31, 43, .06);
  border: 1px solid rgba(122, 31, 43, .22);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .09);
  flex-wrap: wrap;
}

.offer-gift-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #cca43b, #f1d570);
  box-shadow: 0 10px 24px rgba(204, 164, 59, .30);
  flex-shrink: 0;
}

.offer-gift-icon svg { width: 24px; height: 24px; stroke: #0d0f14; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: transparent;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 31, 43, .20), transparent);
  margin-bottom: 1.75rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left { display: flex; align-items: center; gap: 1rem; }

.footer-nav { display: flex; align-items: center; flex-wrap: wrap; gap: .25rem 1.25rem; }

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  transition: color .15s ease;
  padding: .25rem 0;
}

.footer-nav a:hover { color: var(--service-color-light); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-legal-link { text-decoration: none; color: inherit; transition: color .2s ease; }
.footer-legal-link:hover { color: var(--service-color-light) !important; }

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  width: min(980px, calc(100% - 1.25rem));
  display: none;
  z-index: 60;
  border-radius: 18px;
  padding: .65rem;
  background: rgba(13, 15, 20, .85);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.floating-cta .inner {
  display: flex;
  gap: .6rem;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   MOBILE PACK CARDS
   ============================================================ */
.pack-cards-mobile { display: none; }

.pack-card-m {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  position: relative;
  overflow: hidden;
}

.pack-card-m.pack-popular {
  border: 2px solid var(--service-color);
  box-shadow: 0 16px 44px rgba(122, 31, 43, .16);
}

.pack-card-m .pack-badge {
  position: absolute;
  top: 0; right: 1.25rem;
  background: linear-gradient(135deg, #cca43b, #f1d570);
  color: #0d0f14;
  font-size: .75rem;
  font-weight: 900;
  padding: .3rem .85rem;
  border-radius: 0 0 12px 12px;
  letter-spacing: .02em;
}

.pack-card-m .pack-m-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}

.pack-card-m .pack-m-name { font-size: 1.2rem; font-weight: 900; color: var(--text); letter-spacing: -.02em; }
.pack-card-m .pack-m-price { font-size: 1.35rem; font-weight: 950; color: var(--text); letter-spacing: -.02em; }
.pack-card-m .pack-m-price span { font-size: .88rem; font-weight: 700; color: var(--muted); }
.pack-card-m .pack-m-desc { color: var(--muted); font-size: .9rem; font-weight: 700; margin: 0 0 1rem; line-height: 1.4; }

.pack-m-features {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem;
}

.pack-m-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(122, 31, 43, .05);
  border-radius: 10px;
  padding: .45rem .65rem;
}

.pack-m-features li .chk { color: #22c55e; font-weight: 900; font-size: 1rem; flex-shrink: 0; }
.pack-m-features li .no  { color: #b91c1c; font-weight: 900; font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   HAMBURGER
   ============================================================ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--service-color-light);
  cursor: pointer;
  padding: .5rem;
  border-radius: 10px;
  z-index: 1001;
  transition: background .15s ease;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle:hover { background: rgba(122, 31, 43, .08); }

.menu-toggle .bar {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--service-color-light);
  border-radius: 4px;
  transition: transform .28s ease, opacity .2s ease, width .2s ease;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(13, 15, 20, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
  padding: .75rem 1rem 1.25rem;
  gap: .15rem;
  z-index: 999;
  backdrop-filter: blur(14px);
  animation: navSlideDown .2s ease;
}

.nav-links.open a {
  display: block;
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: background .15s ease, color .15s ease;
}

.nav-links.open a:hover {
  background: rgba(122, 31, 43, .08);
  color: var(--service-color-light);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 400px;
  z-index: 999999;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  transform: translateY(100px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .5s ease;
}

.cookie-banner.show { transform: translateY(0); opacity: 1; }

.cookie-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 900;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.cookie-content p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.5; font-weight: 700; }
.cookie-content a { color: var(--service-color-light); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.cookie-content a:hover { color: var(--service-color); }

.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1; justify-content: center; height: 42px; font-size: .9rem; padding: 0 1rem; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }

.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

.reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: all .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ============================================================
   GUIDE MODAL
   ============================================================ */
.guide-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(2, 4, 8, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 1.5rem;
}

.guide-modal-overlay.active { opacity: 1; visibility: visible; }

.guide-modal {
  background: #0d111a;
  background-image:
    radial-gradient(circle at top right, rgba(122, 31, 43, .08), transparent 40%),
    radial-gradient(circle at bottom left, rgba(122, 31, 43, .04), transparent 40%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 95vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px) scale(.95);
  transition: all .4s ease;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .8);
  scrollbar-width: none;
}

.guide-modal::-webkit-scrollbar { display: none; }
.guide-modal-overlay.active .guide-modal { transform: translateY(0) scale(1); }

.guide-modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: all .3s ease;
}

.guide-modal-close:hover {
  background: rgba(122, 31, 43, .1);
  border-color: rgba(122, 31, 43, .3);
  color: var(--service-color-light);
  transform: rotate(90deg);
}

.guide-modal h3 { margin: 0 0 .5rem; font-size: 1.5rem; color: var(--text); letter-spacing: -.02em; }
.guide-modal p  { color: var(--muted); margin: 0 0 1.5rem; font-size: .95rem; line-height: 1.5; }

.guide-form .form-group { margin-bottom: 1.25rem; }

.guide-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.guide-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted-light);
  margin-bottom: .4rem;
}

.guide-form input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-family: inherit;
  box-sizing: border-box;
}

.guide-form input:focus {
  outline: none;
  border-color: var(--service-color-light);
  box-shadow: 0 0 0 3px rgba(122, 31, 43, .15);
  background: rgba(255, 255, 255, .06);
}

.guide-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #cca43b, #f1d570);
  color: #0d0f14;
  border: none;
  padding: 1rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform .1s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  font-family: inherit;
}

.guide-form-submit:hover { box-shadow: 0 10px 20px rgba(204, 164, 59, .3); transform: translateY(-1px); }

.guide-form-msg {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
}

.guide-form-msg.success { display: block; background: rgba(34, 197, 94, .1); color: #22c55e; border: 1px solid rgba(34, 197, 94, .3); }
.guide-form-msg.error   { display: block; background: rgba(239, 68, 68, .1); color: #ef4444; border: 1px solid rgba(239, 68, 68, .3); }

.loading-spinner {
  display: none;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #0d0f14;
  animation: spin .8s linear infinite;
}

/* ============================================================
   ENCARTS DÉFINITION, GEO / Glossaire thématisé
   ============================================================ */
.definition-block {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 4px solid var(--service-color);
  border-radius: 4px;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 0.92em;
  line-height: 1.6;
  color: #cbd5e1;
}

.definition-block strong {
  color: #fafafa;
  display: block;
  margin-bottom: 6px;
}

.definition-block ul {
  margin: 8px 0 0 16px;
  padding: 0;
  list-style: disc;
  color: #cbd5e1;
}

.definition-block ul li {
  margin-bottom: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1150px) {
  .nav-links, .nav-ctas { display: none; }
  .menu-toggle { display: flex; }
  .topbar { position: sticky; top: 0; }
  .nav { position: relative; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .cta-row { justify-content: center; flex-wrap: wrap; }
  .proofs { justify-content: center; }
  .lead { max-width: 100%; }

  .visual { min-height: 380px; order: -1; }

  /* Floating cards, repositionnées pour mobile */
  .fc-uptime      { top: 4%; left: 2%; }
  .fc-response    { top: 40%; left: 2%; }
  .fc-surveillance{ top: 4%; right: 2%; }
  .fc-team        { bottom: 8%; right: 2%; }

  .f-card { padding: .7rem .9rem; min-width: 120px; }
  .f-card-title { font-size: .95rem; }

  .stats-row { grid-template-columns: 1fr; gap: .75rem; }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .consequences ul { grid-template-columns: 1fr; }
  .solution-head { grid-template-columns: 1fr; }
  .solution-visual { min-height: 240px; order: -1; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pricing-table-wrap { display: none; }
  .table-hint { display: none; }
  .pack-cards-mobile { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.25rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .final-cta h2 { font-size: 2.2rem; }
  .floating-cta { display: block; }
  .site-footer { padding-bottom: 5rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .issues-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .panel-title { flex-wrap: wrap; gap: .5rem; }
  .pricing-head h2 { font-size: 1.65rem; }
  h1 { font-size: 1.9rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-nav { align-items: flex-start; }
  .final-contact-info { flex-direction: column; }
  .contact-pill { width: 100%; justify-content: center; }
  .pack-m-features { grid-template-columns: 1fr; }
  .faq-head { padding: 1.35rem 1.25rem 1.1rem; }
  .faq-list { padding: 0 1.25rem; }
  .faq-question { font-size: .92rem; padding: 1rem 0; }
  .guide-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .guide-modal { padding: 2rem 1.5rem; }
  .cta-button-group { flex-direction: column; align-items: stretch; }
  .cta-button-group a { text-align: center; justify-content: center; width: 100%; }
  .guide-card { padding: 1.35rem 1.25rem; }
  .cookie-banner { bottom: 85px; left: 14px; right: 14px; max-width: none; padding: 1.25rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.65rem; }
  .final-cta h2 { font-size: 1.75rem; }
  .btn-ghost { display: none; }
  .brand span { font-size: .88rem; }
  .brand-mark { width: 36px; height: 36px; font-size: 15px; border-radius: 12px; }
  .launch-offer-card { flex-direction: column; align-items: flex-start; }
}