/* =========================================================
   STYLE.CSS — NEXUSITSERVICES
   Version propre, centralisée et optimisée

   Objectifs :
   - Conserver les fonctionnalités et classes existantes
   - Corriger le footer non centré
   - Garder le design premium sombre / bleu / violet / orange
   - Garder les services en 4 colonnes desktop
   - Styliser Avantages, FAQ et pages SEO locales
   - Améliorer responsive tablette/mobile
========================================================= */

/* ========================= */
/* VARIABLES */
/* ========================= */

:root {
  --color-bg: #070d1a;
  --color-bg-soft: #08101f;
  --color-bg-dark: #060b16;

  --color-white: #ffffff;
  --color-text: #d8ddec;
  --color-muted: #b8bfd3;
  --color-muted-2: #8f98b3;

  --color-cyan: #00d9ff;
  --color-purple: #7b2cff;
  --color-orange: #ff6900;

  --border-cyan-soft: rgba(0, 217, 255, 0.22);
  --border-cyan: rgba(0, 217, 255, 0.35);

  --card-bg: rgba(10, 16, 30, 0.86);
  --card-bg-strong: rgba(13, 22, 42, 0.94);

  --shadow-cyan-soft: 0 0 24px rgba(0, 217, 255, 0.12);
  --shadow-cyan: 0 0 34px rgba(0, 217, 255, 0.22);
  --shadow-orange: 0 0 28px rgba(255, 105, 0, 0.45);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;

  --container: 1200px;
  --container-footer: 1080px;
}

/* ========================= */
/* RESET GLOBAL */
/* ========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================================
   FIX ANCRES AVEC HEADER FIXE
   Objectif :
   - Empêcher les sections d’être cachées derrière le menu fixe
   - Corriger les clics sur Services / Zones / FAQ / Avis / Contact
========================================================= */

html {
  scroll-padding-top: 95px;
}

#home,
#services,
#zones,
#process,
#shipping,
#advantages,
#reviews,
#reviewsList,
#faq,
#contact {
  scroll-margin-top: 95px;
}

body {
  font-family:
    Arial,
    Helvetica,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #070d1a;
  color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ========================= */
/* HEADER / NAVBAR */
/* ========================= */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;

  background: rgba(7, 13, 26, 0.92);
  border-bottom: 1px solid rgba(0, 217, 255, 0.25);
  backdrop-filter: blur(14px);

  z-index: 1000;
}

.header-container {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;

  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
  animation: logoGlow 3s infinite alternate;
}

.logo-text {
  color: var(--color-white);
  font-weight: 800;
  font-size: 18px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--color-cyan);
}

/* ========================= */
/* PAGE LOADER */
/* ========================= */

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;

  width: 0%;
  height: 3px;

  background: linear-gradient(
    90deg,
    var(--color-cyan),
    var(--color-purple),
    var(--color-orange)
  );
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.8);

  transition: width 0.3s ease;
}

.loader-logo-wrapper {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: opacity 0.4s ease;
}

.loader-logo {
  width: 80px;
  height: 80px;

  animation: logoPulse 1.6s infinite ease-in-out;
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
}

#page-loader.active .loader-logo-wrapper {
  opacity: 1;
}

/* ========================= */
/* CURSEUR PERSONNALISÉ */
/* ========================= */

.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;

  background: var(--color-cyan);
  border-radius: 50%;

  pointer-events: none;
  z-index: 99998;

  transform: translate(-50%, -50%);
  box-shadow:
    0 0 10px var(--color-cyan),
    0 0 25px var(--color-cyan);
}

.cursor-glow {
  position: fixed;
  width: 90px;
  height: 90px;

  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;

  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 217, 255, 0.22), transparent 70%);

  transition: 0.08s linear;
}

.custom-cursor.active {
  width: 34px;
  height: 34px;

  background: transparent;
  border: 2px solid var(--color-orange);

  box-shadow:
    0 0 15px var(--color-orange),
    0 0 35px rgba(255, 105, 0, 0.7);
}

/* ========================= */
/* BOUTONS GLOBAUX */
/* ========================= */

a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 58px;
  padding: 0 30px;

  border-radius: var(--radius-sm);
  text-decoration: none !important;

  font-size: 16px;
  font-weight: 800;

  cursor: pointer;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

a.btn-primary,
button.btn-primary {
  color: var(--color-white) !important;
  background: var(--color-orange) !important;
  border: 1px solid var(--color-orange) !important;
  box-shadow: 0 0 25px rgba(255, 105, 0, 0.35);
}

a.btn-primary:hover,
button.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 38px rgba(255, 105, 0, 0.7);
}

a.btn-secondary,
button.btn-secondary {
  color: var(--color-cyan) !important;
  background: rgba(0, 217, 255, 0.05) !important;
  border: 2px solid var(--color-cyan) !important;
}

a.btn-secondary:hover,
button.btn-secondary:hover {
  color: #07101f !important;
  background: var(--color-cyan) !important;
  transform: translateY(-4px);
}

/* ========================= */
/* HERO PREMIUM */
/* ========================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;

  padding: 120px 0 80px;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(0, 217, 255, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(123, 44, 255, 0.12),
      transparent 40%
    ),
    linear-gradient(rgba(7, 13, 26, 0.85), rgba(7, 13, 26, 0.96)),
    url("/asset/images/background.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-premium {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 16px;

  border-radius: 999px;
  border: 1px solid var(--border-cyan);

  color: var(--color-cyan);
  background: rgba(0, 217, 255, 0.08);

  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 650px;
  margin-bottom: 36px;

  color: var(--color-muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;

  margin-bottom: 35px;
}

.hero-buttons a,
.hero-buttons .btn {
  min-width: 220px;
  height: 64px;
  padding: 0 32px;

  font-size: 17px;
  font-weight: 800;
}

.hero-buttons .btn-primary {
  box-shadow: var(--shadow-orange);
}

.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust span {
  position: relative;
  overflow: hidden;

  padding: 10px 14px;
  border-radius: var(--radius-sm);

  color: var(--color-text);
  font-size: 14px;

  background: rgba(10, 16, 30, 0.75);
  border: 1px solid rgba(0, 217, 255, 0.18);

  animation: trustFloat 4s ease-in-out infinite;
  transition: 0.35s ease;
}

.hero-trust span:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-trust span:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(0, 217, 255, 0.24),
    transparent 65%
  );
  opacity: 0;

  transition: opacity 0.35s ease;
}

.hero-trust span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
}

.hero-trust span:hover {
  transform: translateY(-6px) scale(1.04);
  color: var(--color-white);
  border-color: var(--color-cyan);
  box-shadow:
    0 0 22px rgba(0, 217, 255, 0.28),
    0 0 45px rgba(123, 44, 255, 0.14);
}

.hero-trust span:hover::before {
  opacity: 1;
}

.hero-trust span:hover::after {
  animation: trustLight 0.8s ease;
}

.hero-text p {
  max-width: 680px;
}

@media (max-width: 900px) {
  .hero h1 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(36px, 7vw, 54px);
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.03em;
  }
}

/* Carte droite hero */
.hero-card {
  position: relative;
  padding: 32px;

  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 217, 255, 0.25);

  background: linear-gradient(
    180deg,
    rgba(13, 22, 42, 0.9),
    rgba(6, 11, 22, 0.96)
  );

  box-shadow:
    0 0 35px rgba(0, 217, 255, 0.18),
    0 0 70px rgba(123, 44, 255, 0.12);

  animation: heroFloat 4s ease-in-out infinite;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;

  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.4),
    transparent,
    rgba(255, 105, 0, 0.3)
  );

  opacity: 0.5;
}

.hero-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.hero-card p {
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 26px;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-card-stats div {
  padding: 16px;
  border-radius: 12px;

  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.18);
}

.hero-card-stats strong {
  display: block;
  font-size: 28px;
}

.hero-card-stats span {
  color: var(--color-muted);
  font-size: 13px;
}

/* ========================= */
/* SECTIONS GLOBALES */
/* ========================= */

section {
  padding: 110px 0;
}

section h2 {
  margin-bottom: 20px;

  text-align: center;
  font-size: 42px;

  animation: titleAppear 1s ease both;
}

.section-line {
  width: 90px;
  height: 4px;

  margin: 0 auto 60px;

  border-radius: 50px;
  background: linear-gradient(
    90deg,
    var(--color-cyan),
    var(--color-purple),
    var(--color-orange)
  );
}

.section-kicker {
  display: block;
  margin-bottom: 14px;

  color: var(--color-cyan);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;

  text-shadow: 0 0 12px rgba(0, 217, 255, 0.45);
}

.section-intro {
  max-width: 920px;
  margin: 0 auto 48px;

  color: #c6ccdc;
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
}

/* ========================= */
/* SERVICES PREMIUM */
/* ========================= */

.services {
  background: rgba(7, 13, 26, 0.96);
}

.services .services-container {
  display: block;
}

.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-card {
  position: relative;
  overflow: hidden;

  width: 100%;
  min-width: 0;
  min-height: 100%;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 20px;

  background: linear-gradient(
    180deg,
    rgba(13, 22, 42, 0.96),
    rgba(6, 11, 22, 0.98)
  );

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 217, 255, 0.45);
  box-shadow:
    0 0 35px rgba(0, 217, 255, 0.22),
    0 0 70px rgba(123, 44, 255, 0.14);
}

.service-image-box {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;

  width: 100%;
  height: 210px;
}

.service-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(to bottom, rgba(7, 13, 26, 0.05), rgba(7, 13, 26, 0.92)),
    linear-gradient(120deg, rgba(0, 217, 255, 0.12), transparent 45%);
}

.service-img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}

.service-card:hover .service-img {
  transform: scale(1.12);
  filter: brightness(1.15) contrast(1.08);
}

.service-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;

  padding: 8px 14px;
  border-radius: 999px;

  color: var(--color-cyan);
  background: rgba(0, 217, 255, 0.12);
  border: 1px solid var(--border-cyan);

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;

  backdrop-filter: blur(8px);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.18);
}

.service-content {
  position: relative;
  z-index: 2;

  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 24px;
}

.service-content h3 {
  margin-bottom: 16px;

  color: var(--color-white);
  font-size: 21px;
  line-height: 1.25;
}

.service-content p {
  margin-bottom: 24px;

  color: var(--color-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.service-highlight {
  display: grid;
  gap: 10px;

  margin: 18px 0 22px;
  padding: 0;

  list-style: none;
}

.service-highlight li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: var(--color-text);
  font-size: 14px;
  line-height: 1.4;
}

.service-highlight li::before {
  content: "✔";
  flex-shrink: 0;

  color: var(--color-cyan);
  font-weight: 900;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.7);
}

.service-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;

  margin-top: auto;
  margin-bottom: 22px;
  padding-top: 8px;

  color: var(--color-cyan);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;

  border-bottom: 2px solid transparent;

  transition:
    color 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.service-link:hover {
  color: var(--color-orange);
  transform: translateX(6px);
  border-bottom-color: var(--color-orange);
}

.service-content::after {
  content: "";
  width: 65px;
  height: 3px;

  margin-top: 18px;

  border-radius: 99px;
  background: linear-gradient(
    90deg,
    var(--color-cyan),
    var(--color-purple),
    var(--color-orange)
  );
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.55);

  transition: width 0.35s ease;
}

.service-card:hover .service-content::after {
  width: 130px;
}

/* ========================= */
/* PROCESS */
/* ========================= */

.process {
  background:
    radial-gradient(circle at top, rgba(0, 217, 255, 0.08), transparent 35%),
    rgba(7, 13, 26, 0.96);
}

.process-intro {
  max-width: 780px;
  margin: 0 auto 70px;

  text-align: center;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.8;
}

.process-timeline {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;

  height: 2px;

  background: linear-gradient(
    90deg,
    var(--color-cyan),
    var(--color-purple),
    var(--color-orange)
  );
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.55);
  opacity: 0.75;
}

.process-step {
  position: relative;
  z-index: 2;
  overflow: hidden;

  padding: 34px 24px;

  text-align: center;

  background: rgba(10, 16, 30, 0.9);
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 16px;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    420px circle at center,
    rgba(0, 217, 255, 0.13),
    transparent 55%
  );
  opacity: 0;

  transition: opacity 0.35s ease;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: var(--color-cyan);
  box-shadow:
    0 0 25px rgba(0, 217, 255, 0.24),
    0 0 55px rgba(123, 44, 255, 0.16);
}

.process-number {
  position: absolute;
  top: 14px;
  right: 18px;

  color: rgba(255, 255, 255, 0.08);
  font-size: 42px;
  font-weight: 900;
}

.process-icon {
  width: 86px;
  height: 86px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 auto 24px;
  border-radius: 50%;

  background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
  box-shadow: 0 0 35px rgba(0, 217, 255, 0.45);

  font-size: 34px;

  animation: floatIcon 3s ease-in-out infinite;
}

.process-step h3,
.process-step p {
  position: relative;
  z-index: 2;
}

.process-step h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.process-step p {
  color: var(--color-muted);
  line-height: 1.7;
}

/* ========================= */
/* ENVOI COLIS */
/* ========================= */

.shipping {
  padding-bottom: 80px;
  text-align: center;
  background: rgba(7, 13, 26, 0.96);
}

.shipping-intro {
  max-width: 850px;
  margin: 0 auto 55px;

  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.8;
}

.shipping-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  margin-bottom: 45px;
}

.shipping-card {
  padding: 34px;

  text-align: left;

  background: rgba(10, 16, 30, 0.85);
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 14px;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.shipping-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-cyan);
  box-shadow:
    0 0 25px rgba(0, 217, 255, 0.22),
    0 0 50px rgba(123, 44, 255, 0.12);
}

.shipping-number {
  margin-bottom: 18px;

  color: var(--color-cyan);
  font-size: 18px;
  font-weight: 800;

  text-shadow: 0 0 12px rgba(0, 217, 255, 0.7);
}

.shipping-card h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.shipping-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

.shipping-warning {
  max-width: 900px;
  margin: 0 auto 35px;
  padding: 20px 25px;

  border: 1px solid rgba(255, 105, 0, 0.45);
  border-radius: 12px;

  background: rgba(255, 105, 0, 0.08);
  color: var(--color-text);
  line-height: 1.7;
}

.shipping-warning strong {
  color: var(--color-orange);
}

/* ========================= */
/* AVANTAGES */
/* ========================= */

.advantages {
  position: relative;
  overflow: hidden;

  margin-top: 0;
  padding: 95px 0 90px;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(0, 217, 255, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 35%,
      rgba(123, 44, 255, 0.1),
      transparent 34%
    ),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}

.advantages::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;

  width: 320px;
  height: 320px;
  border-radius: 999px;

  background: rgba(0, 217, 255, 0.08);
  filter: blur(90px);
  transform: translateX(-50%);

  pointer-events: none;
}

.advantages .container {
  position: relative;
  z-index: 1;
}

.advantages h2 {
  max-width: 900px;
  margin: 0 auto 20px;

  color: var(--color-white);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  text-align: center;
}

.advantages .section-line {
  margin-bottom: 42px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.advantage-card {
  position: relative;
  overflow: hidden;

  min-height: 270px;
  display: flex;
  flex-direction: column;

  padding: 30px 26px;
  border-radius: var(--radius-xl);

  background:
    linear-gradient(180deg, rgba(13, 22, 42, 0.94), rgba(6, 11, 22, 0.98)),
    rgba(10, 16, 30, 0.9);

  border: 1px solid rgba(0, 217, 255, 0.22);

  box-shadow:
    0 0 24px rgba(0, 217, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.advantage-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 0%, rgba(0, 217, 255, 0.2), transparent 42%),
    radial-gradient(
      circle at 90% 100%,
      rgba(255, 105, 0, 0.08),
      transparent 34%
    );

  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 22px;

  width: 58px;
  height: 3px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    var(--color-cyan),
    var(--color-purple),
    var(--color-orange)
  );
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.5);

  transition: width 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 217, 255, 0.55);
  box-shadow:
    0 0 34px rgba(0, 217, 255, 0.2),
    0 0 70px rgba(123, 44, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.advantage-card:hover::after {
  width: 120px;
}

.advantage-card > * {
  position: relative;
  z-index: 1;
}

.advantage-card > span {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 14px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.24);

  font-size: 24px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.12);
}

.advantage-card h3 {
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.25;
}

.advantage-card p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ========================= */
/* STATS */
/* ========================= */

.stats {
  padding: 72px 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  text-align: center;
}

.stat h3 {
  margin-bottom: 15px;

  color: var(--color-white);
  font-size: 52px;

  text-shadow: 0 0 20px rgba(0, 217, 255, 0.45);
}

.stat p {
  color: var(--color-muted);
  font-size: 18px;
}

/* ========================= */
/* AVIS / TÉMOIGNAGES */
/* ========================= */

.reviews {
  padding: 90px 0;
}

.testimonials {
  background: rgba(7, 13, 26, 0.97);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 45px;

  text-align: center;

  background: rgba(10, 16, 30, 0.85);
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 14px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 25px rgba(0, 217, 255, 0.25),
    0 0 55px rgba(123, 44, 255, 0.15);
}

.stars {
  margin-bottom: 25px;
  color: var(--color-orange);
  font-size: 24px;
}

.quote {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 1.6;
}

.author strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-cyan);
}

.author span {
  color: var(--color-muted);
}

.review-cta {
  max-width: 800px;
  margin: 50px auto 0;
  padding: 35px;

  text-align: center;

  background: rgba(10, 16, 30, 0.85);
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 16px;

  box-shadow:
    0 0 25px rgba(0, 217, 255, 0.15),
    0 0 55px rgba(123, 44, 255, 0.08);
}

.review-cta h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.review-cta p {
  margin-bottom: 25px;
  color: var(--color-muted);
  font-size: 17px;
}

.separator {
  position: relative;
  margin: 60px 0;
  text-align: center;
}

.separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--color-cyan),
    var(--color-purple),
    var(--color-orange),
    transparent
  );
  opacity: 0.6;
}

.separator span {
  position: relative;

  padding: 0 20px;

  background: var(--color-bg);
  color: var(--color-cyan);

  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.reviews-list {
  max-width: 1200px;
  margin: 0 auto 60px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.reviews-list .testimonial-card {
  width: 100%;
  max-width: none;
  min-height: 260px;
  margin: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviews-list .quote {
  font-size: 20px;
}

.reviews-list .author {
  margin-top: auto;
}

/* ========================= */
/* FORMULAIRE AVIS */
/* ========================= */

.review-form {
  max-width: 800px;
  margin: 0 auto 50px;

  display: grid;
  gap: 18px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 16px;

  border-radius: 8px;
  border: 1px solid rgba(0, 217, 255, 0.25);

  background: rgba(10, 16, 30, 0.85);
  color: var(--color-white);

  font-size: 15px;
  outline: none;
}

.review-form textarea {
  min-height: 130px;
  resize: vertical;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: var(--color-muted-2);
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.2);
}

/* ========================= */
/* FAQ */
/* ========================= */

.faq {
  position: relative;
  overflow: hidden;

  margin-top: 0;
  padding: 95px 0 90px;

  background:
    radial-gradient(circle at 50% 20%, rgba(0, 217, 255, 0.1), transparent 30%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-dark) 100%);
}

.faq::before {
  content: "";
  position: absolute;
  top: 24%;
  left: 50%;

  width: 260px;
  height: 260px;
  border-radius: 999px;

  background: rgba(0, 217, 255, 0.1);
  filter: blur(85px);
  transform: translateX(-50%);

  pointer-events: none;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq h2 {
  max-width: 980px;
  margin: 0 auto 20px;

  color: var(--color-white);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  text-align: center;
}

.faq .section-line {
  margin-bottom: 46px;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;

  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;

  border-radius: 18px;
  border: 1px solid rgba(0, 217, 255, 0.22);

  background:
    linear-gradient(180deg, rgba(13, 22, 42, 0.92), rgba(6, 11, 22, 0.98)),
    rgba(10, 16, 30, 0.9);

  box-shadow:
    0 0 24px rgba(0, 217, 255, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(0, 217, 255, 0.5);
  box-shadow:
    0 0 28px rgba(0, 217, 255, 0.16),
    0 0 55px rgba(123, 44, 255, 0.1);
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item summary {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 22px 24px;

  color: var(--color-white);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;

  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";

  flex: 0 0 34px;
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  color: var(--color-cyan);
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.22);

  font-size: 22px;
  line-height: 1;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease;
}

.faq-item[open] summary::after {
  content: "–";
  color: #07101f;
  background: var(--color-cyan);
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 24px 24px;

  color: var(--color-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

/* ========================= */
/* CTA */
/* ========================= */

.cta {
  padding: 120px 0 110px;
}

.cta h2 {
  max-width: 980px;

  margin: 0 auto 34px;
}

.cta .btn {
  margin-bottom: 42px;
}

.cta-infos {
  display: flex;
  justify-content: center;
  gap: 45px;

  margin: 35px 0;
}

.cta-info {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--color-muted);
  font-size: 18px;
}

.cta-info span {
  color: var(--color-cyan);
}

.cta-tags {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-tags span {
  position: relative;
  overflow: hidden;

  padding: 15px 25px;

  border: 1px solid rgba(0, 217, 255, 0.32);
  border-radius: 8px;

  color: var(--color-muted);
  background: rgba(10, 16, 30, 0.78);

  animation: tagFloat 4s ease-in-out infinite;

  transition:
    transform 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cta-tags span:nth-child(2) {
  animation-delay: 0.4s;
}

.cta-tags span:nth-child(3) {
  animation-delay: 0.8s;
}

.cta-tags span:nth-child(4) {
  animation-delay: 1.2s;
}

.cta-tags span::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(0, 217, 255, 0.22),
    transparent 65%
  );
  opacity: 0;

  transition: opacity 0.35s ease;
}

.cta-tags span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
}

.cta-tags span:hover {
  transform: translateY(-6px) scale(1.03);
  color: var(--color-white);
  border-color: var(--color-cyan);
  box-shadow:
    0 0 22px rgba(0, 217, 255, 0.28),
    0 0 45px rgba(123, 44, 255, 0.14);
}

.cta-tags span:hover::before {
  opacity: 1;
}

.cta-tags span:hover::after {
  animation: tagLight 0.8s ease;
}

.internal-seo-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}

.internal-seo-links a {
  min-height: 44px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0, 217, 255, 0.28);
  border-radius: 999px;

  color: var(--color-text);
  background: rgba(10, 16, 30, 0.72);

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.internal-seo-links a:hover,
.internal-seo-links a:focus-visible {
  transform: translateY(-3px);

  color: #07101f;
  background: var(--color-cyan);
  border-color: var(--color-cyan);

  box-shadow: 0 0 24px rgba(0, 217, 255, 0.28);
}

/* ========================= */
/* PAGE CONTACT */
/* ========================= */

.contact-page {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 100px;

  background:
    radial-gradient(circle at top, rgba(0, 217, 255, 0.08), transparent 40%),
    linear-gradient(rgba(7, 13, 26, 0.9), rgba(7, 13, 26, 0.97)),
    url("/asset/images/background.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-container {
  max-width: 750px;
  margin: auto;
  text-align: center;
}

.contact-container h1 {
  margin-bottom: 20px;
  font-size: 52px;
  animation: titleAppear 1s ease;
}

.contact-container p {
  margin-bottom: 45px;

  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.8;
}

.contact-form {
  max-width: 750px;
  margin: 0 auto;
  padding: 35px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;

  background: rgba(10, 16, 30, 0.85);
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 16px;

  backdrop-filter: blur(10px);
  animation: fadeUp 1s ease;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form:hover {
  border-color: var(--color-cyan);
  box-shadow:
    0 0 25px rgba(0, 217, 255, 0.2),
    0 0 55px rgba(123, 44, 255, 0.12);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 55px;
  padding: 16px;

  border-radius: 10px;
  border: 1px solid rgba(0, 217, 255, 0.2);

  background: rgba(7, 13, 26, 0.9);
  color: var(--color-white);

  font-size: 15px;
  outline: none;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-muted-2);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%2300d9ff' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;

  padding-right: 40px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  transform: scale(1.01);
  border-color: var(--color-cyan);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.25);
}

.contact-form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.contact-form .btn {
  margin-top: 10px;
}

/* ========================= */
/* PAGES SEO LOCALES */
/* ========================= */

.seo-page {
  background:
    radial-gradient(circle at 20% 8%, rgba(0, 217, 255, 0.08), transparent 28%),
    radial-gradient(
      circle at 90% 30%,
      rgba(123, 44, 255, 0.1),
      transparent 32%
    ),
    var(--color-bg);
}

.seo-hero {
  min-height: 74vh;
  display: flex;
  align-items: center;

  padding: 150px 0 90px;

  background:
    linear-gradient(rgba(7, 13, 26, 0.86), rgba(7, 13, 26, 0.96)),
    url("/asset/images/background.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.seo-hero-container {
  max-width: 980px;
  text-align: center;
}

.seo-hero h1 {
  max-width: 980px;
  margin: 18px auto 24px;

  color: var(--color-white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

.seo-hero p {
  max-width: 840px;
  margin: 0 auto 34px;

  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.8;
}

.seo-hero .hero-buttons {
  justify-content: center;
  margin-bottom: 0;
}

.seo-section {
  padding: 96px 0;
}

.seo-section-soft {
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 217, 255, 0.07), transparent 30%),
    rgba(6, 11, 22, 0.72);
}

.seo-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.seo-service-card {
  min-height: 245px;
  padding: 28px;

  border: 1px solid rgba(0, 217, 255, 0.24);
  border-radius: 18px;

  background: linear-gradient(
    180deg,
    rgba(13, 22, 42, 0.9),
    rgba(6, 11, 22, 0.98)
  );

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.seo-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.55);
  box-shadow: 0 0 26px rgba(0, 217, 255, 0.18);
}

.seo-service-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 28px;
}

.seo-service-card h3 {
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: 20px;
}

.seo-service-card p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.seo-zone-list,
.seo-process-list {
  max-width: 980px;
  margin: 0 auto;

  display: grid;
  gap: 16px;

  list-style: none;
}

.seo-zone-list li,
.seo-process-list li {
  padding: 22px 24px;

  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 14px;

  background: rgba(10, 16, 30, 0.82);

  color: var(--color-text);
  line-height: 1.7;
}

.seo-process-list {
  counter-reset: seo-process;
}

.seo-process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.seo-process-list li::before {
  counter-increment: seo-process;
  content: counter(seo-process, decimal-leading-zero);

  color: var(--color-cyan);
  font-weight: 900;
  text-shadow: 0 0 12px rgba(0, 217, 255, 0.7);
}

.seo-process-list strong {
  display: block;
  margin-bottom: 5px;

  color: var(--color-white);
  font-size: 18px;
}

.seo-process-list span {
  color: var(--color-muted);
  line-height: 1.7;
}

/* =========================================================
   FOOTER PREMIUM CENTRÉ
   Correction principale demandée
========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;

  padding: 54px 0 22px;
  margin-top: 0;

  color: var(--color-white);

  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(0, 217, 255, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(123, 44, 255, 0.18),
      transparent 36%
    ),
    linear-gradient(180deg, rgba(8, 16, 31, 0.98) 0%, var(--color-bg-dark) 100%);

  border-top: 1px solid rgba(0, 217, 255, 0.22);
}

.site-footer section {
  padding: 0;
}

.footer-glow,
.site-footer .footer-glow {
  position: absolute;
  top: -140px;
  right: -120px;
  z-index: 0;

  width: 320px;
  height: 320px;
  border-radius: 999px;

  background: rgba(0, 217, 255, 0.13);
  opacity: 0.55;
  filter: blur(85px);

  pointer-events: none;
}

.footer-container,
.site-footer .footer-container {
  position: relative;
  z-index: 1;

  width: 90%;
  max-width: var(--container-footer);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(280px, 1.25fr)
    minmax(170px, 0.75fr)
    minmax(170px, 0.75fr)
    minmax(250px, 1fr);
  gap: 44px;

  align-items: start;
  justify-content: center;
}

/*
  Sécurité layout :
  Si ton footer contient seulement 3 colonnes visibles
  (marque + liens utiles + contact), la grille se recentre.
*/
.footer-container:not(:has(nav.footer-col:nth-of-type(2))) {
  grid-template-columns:
    minmax(280px, 1.2fr)
    minmax(190px, 0.8fr)
    minmax(250px, 1fr);
  gap: 70px;
}

.footer-brand-col,
.footer-col {
  align-self: start;
  margin: 0;
  padding: 0;
}

.footer-brand-col,
.site-footer .footer-brand-col {
  max-width: 390px;
  justify-self: start;
}

.footer-logo,
.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 16px;

  color: var(--color-white);
  text-decoration: none;
}

.footer-logo-img,
.site-footer .footer-logo-img {
  width: 42px;
  height: 42px;
  padding: 5px;

  border-radius: 13px;
  object-fit: contain;

  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.24);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.12);

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.footer-logo-text,
.site-footer .footer-logo-text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.07) rotate(-2deg);
  filter: drop-shadow(0 0 18px rgba(0, 217, 255, 0.7));
}

.footer-description,
.site-footer .footer-description {
  max-width: 380px;
  margin: 0 0 20px;

  color: rgba(216, 222, 236, 0.84);
  font-size: 13.5px;
  line-height: 1.7;
}

.footer-socials,
.site-footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 0;
}

.footer-social-link,
.footer-socials a,
.site-footer .footer-social-link,
.site-footer .footer-socials a {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  color: #d8f7ff;
  background: rgba(7, 13, 26, 0.76);
  border: 1px solid rgba(0, 217, 255, 0.26);

  text-decoration: none;
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.13);

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-social-link i,
.footer-socials a i {
  font-size: 15px;
  line-height: 1;
}

.footer-social-link:hover,
.footer-socials a:hover,
.footer-social-link:focus-visible,
.footer-socials a:focus-visible {
  transform: translateY(-3px);

  color: var(--color-white);
  background: rgba(6, 182, 212, 0.17);
  border-color: rgba(103, 232, 249, 0.58);

  box-shadow: 0 0 26px rgba(6, 182, 212, 0.28);
  outline: none;
}

.footer-col,
.site-footer .footer-col {
  justify-self: start;
  min-width: 0;
}

.footer-col h2,
.site-footer .footer-col h2 {
  margin: 0 0 15px;

  color: var(--color-white);
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
}

.footer-col ul,
.footer-contact ul,
.site-footer .footer-col ul,
.site-footer .footer-contact ul {
  display: grid;
  gap: 10px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a,
.footer-contact a,
.site-footer .footer-col a,
.site-footer .footer-contact a {
  display: inline-block;

  color: rgba(216, 222, 236, 0.84);
  text-decoration: none;

  font-size: 13px;
  line-height: 1.45;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-col a:hover,
.footer-col a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--color-cyan);
  transform: translateX(3px);
}

.footer-col[aria-labelledby="footer-contact-title"],
.site-footer .footer-col[aria-labelledby="footer-contact-title"] {
  width: 100%;
  max-width: 270px;
  justify-self: start;
}

.footer-contact,
.site-footer .footer-contact {
  margin: 0;
  padding: 0;
  font-style: normal;
}

.footer-contact li,
.site-footer .footer-contact li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;

  color: rgba(216, 222, 236, 0.84);
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact li span[aria-hidden="true"] {
  width: 18px;
  min-width: 18px;

  text-align: center;
  line-height: 1;
}

.footer-contact li a,
.footer-contact li span:not([aria-hidden="true"]) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-bottom,
.site-footer .footer-bottom {
  position: relative;
  z-index: 1;

  width: 90%;
  max-width: var(--container-footer);
  margin: 34px auto 0;
  padding-top: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  border-top: 1px solid rgba(0, 217, 255, 0.15);
}

.footer-bottom p,
.site-footer .footer-bottom p {
  margin: 0;

  color: rgba(216, 222, 236, 0.7);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-legal-links a {
  color: rgba(216, 222, 236, 0.74);
  font-size: 12px;
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--color-cyan);
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */

.hidden {
  opacity: 0;
  transform: translateY(45px) scale(0.98);
  filter: blur(8px);
}

.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: 0.8s ease;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(0 0 5px var(--color-cyan));
  }

  to {
    filter: drop-shadow(0 0 18px var(--color-purple));
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }
}

@keyframes titleAppear {
  from {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes trustFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes trustLight {
  to {
    left: 130%;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes backgroundMove {
  from {
    background-position: center center;
  }

  to {
    background-position: center top;
  }
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes tagLight {
  to {
    left: 130%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* RESPONSIVE TABLETTE */
/* ========================= */

@media (max-width: 1100px) {
  .services-premium-grid,
  .advantages-grid,
  .seo-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container,
  .site-footer .footer-container,
  .footer-container:not(:has(nav.footer-col:nth-of-type(2))) {
    max-width: 900px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 56px;
  }

  .footer-brand-col,
  .site-footer .footer-brand-col {
    max-width: none;
  }

  .footer-col[aria-labelledby="footer-contact-title"],
  .site-footer .footer-col[aria-labelledby="footer-contact-title"] {
    max-width: none;
  }

  .advantage-card {
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  .hero-premium {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons,
  .hero-trust {
    justify-content: center;
  }

  .hero-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-container h1,
  .cta h2 {
    font-size: 42px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;

    width: 2px;
    height: 100%;
  }

  .stats-container,
  .shipping-steps {
    grid-template-columns: 1fr;
  }

  .shipping-card {
    text-align: center;
  }
}

/* ========================= */
/* RESPONSIVE MOBILE */
/* ========================= */

@media (max-width: 768px) {
  .custom-cursor,
  .cursor-glow {
    display: none;
  }

  body {
    cursor: auto;
  }

  .hero,
  .cta,
  .contact-page,
  .seo-hero {
    background-attachment: scroll;
  }

  .service-image-box {
    height: 190px;
  }

  .premium-card {
    transform: none !important;
  }

  .contact-container h1 {
    font-size: 36px;
  }

  .contact-container p {
    font-size: 16px;
  }

  .contact-form {
    padding: 25px;
  }
}

@media (max-width: 700px) {
  .services-premium-grid,
  .advantages-grid,
  .seo-service-grid {
    grid-template-columns: 1fr;
  }

  .advantages,
  .faq,
  .seo-section {
    padding: 72px 0;
  }

  .advantage-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .faq-item summary {
    padding: 20px;
    font-size: 15px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .seo-hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .seo-process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .internal-seo-links {
    align-items: stretch;
    flex-direction: column;
  }

  .internal-seo-links a {
    width: 100%;
    border-radius: 12px;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }

  .footer-container,
  .site-footer .footer-container,
  .footer-container:not(:has(nav.footer-col:nth-of-type(2))) {
    grid-template-columns: 1fr;
    gap: 28px;

    text-align: left;
  }

  .footer-brand-col,
  .footer-col,
  .site-footer .footer-brand-col,
  .site-footer .footer-col,
  .footer-col[aria-labelledby="footer-contact-title"],
  .site-footer .footer-col[aria-labelledby="footer-contact-title"] {
    justify-self: stretch;
  }

  .footer-description,
  .site-footer .footer-description {
    max-width: none;
  }

  .footer-bottom,
  .site-footer .footer-bottom {
    margin-top: 28px;
    padding-top: 14px;
  }
}

@media (max-width: 600px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 70px;
  }

  .hero-container h1 {
    font-size: 34px;
  }

  .hero-container p,
  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a,
  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  section {
    padding: 78px 0;
  }

  section h2 {
    font-size: 32px;
  }

  .cta h2 {
    font-size: 34px;
  }

  .cta-infos {
    flex-direction: column;
    gap: 18px;
  }

  .site-footer {
    padding: 42px 0 18px;
  }

  .footer-glow,
  .site-footer .footer-glow {
    top: -110px;
    right: -130px;

    width: 240px;
    height: 240px;

    filter: blur(70px);
  }

  .footer-logo-img,
  .site-footer .footer-logo-img {
    width: 36px;
    height: 36px;
  }

  .footer-logo-text,
  .site-footer .footer-logo-text {
    font-size: 16px;
  }

  .footer-social-link,
  .footer-socials a,
  .site-footer .footer-social-link,
  .site-footer .footer-socials a {
    width: 35px;
    height: 35px;
  }
}

/* =========================================================
   PATCH ZONES PREMIUM - NEXUSITSERVICES
   Objectif :
   - Corriger la mise en page de la section Zones
   - Centrer et équilibrer les cartes
   - Mettre France entière par colis en carte large premium
   - Garder une bonne lisibilité desktop/tablette/mobile
========================================================= */

.zones {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;

  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(0, 217, 255, 0.14),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 34%,
      rgba(123, 44, 255, 0.14),
      transparent 34%
    ),
    linear-gradient(180deg, #070d1a 0%, #08101f 100%);
}

.zones::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 50%;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.08);
  filter: blur(95px);
  transform: translateX(-50%);
  pointer-events: none;
}

.zones .container {
  position: relative;
  z-index: 1;
}

.zones h2 {
  max-width: 980px;
  margin: 0 auto 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  text-align: center;
}

.zones .section-line {
  margin-bottom: 38px;
}

.zones-layout {
  display: grid;
  gap: 26px;
}

/* Grille des zones locales */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* Carte zone */
.zone-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  padding: 28px 24px;
  border-radius: 22px;

  background:
    linear-gradient(180deg, rgba(13, 22, 42, 0.94), rgba(6, 11, 22, 0.98)),
    rgba(10, 16, 30, 0.92);

  border: 1px solid rgba(0, 217, 255, 0.22);

  box-shadow:
    0 0 26px rgba(0, 217, 255, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.zone-card::before,
.zone-wide-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 0%, rgba(0, 217, 255, 0.22), transparent 42%),
    radial-gradient(
      circle at 90% 100%,
      rgba(255, 105, 0, 0.09),
      transparent 34%
    );

  opacity: 0;
  transition: opacity 0.3s ease;
}

.zone-card::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 22px;

  width: 58px;
  height: 3px;
  border-radius: 999px;

  background: linear-gradient(90deg, #00d9ff, #7b2cff, #ff6900);
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.5);

  transition: width 0.3s ease;
}

.zone-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.55);

  box-shadow:
    0 0 34px rgba(0, 217, 255, 0.18),
    0 0 70px rgba(123, 44, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.zone-card:hover::after {
  width: 118px;
}

.zone-card > * {
  position: relative;
  z-index: 1;
}

.zone-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.25);

  font-size: 22px;
  box-shadow: 0 0 22px rgba(0, 217, 255, 0.13);
}

.zone-card h3,
.zone-wide-card h3 {
  margin-bottom: 12px;

  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.zone-card p,
.zone-wide-card p {
  color: #c6ccdc;
  font-size: 15px;
  line-height: 1.72;
}

.zone-card-highlight {
  border-color: rgba(255, 105, 0, 0.32);
}

/* Carte large France entière */
.zone-wide-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;

  padding: 32px;
  border-radius: 24px;

  background:
    linear-gradient(135deg, rgba(10, 95, 118, 0.26), rgba(123, 44, 255, 0.13)),
    linear-gradient(180deg, rgba(13, 22, 42, 0.96), rgba(6, 11, 22, 0.98));

  border: 1px solid rgba(0, 217, 255, 0.42);

  box-shadow:
    0 0 34px rgba(0, 217, 255, 0.16),
    0 0 80px rgba(123, 44, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.zone-wide-card:hover::before {
  opacity: 1;
}

.zone-wide-content {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.zone-icon-package {
  margin: 0;
  background: rgba(255, 105, 0, 0.12);
  border-color: rgba(255, 105, 0, 0.34);
}

.zone-wide-actions {
  position: relative;
  z-index: 1;

  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.zone-wide-actions .btn {
  min-height: 48px;
  padding: 0 20px;
  font-size: 14px;
}

/* Liens rapides */
.zones-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 30px;
}

.zone-pill-link {
  min-height: 44px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #d8ddec;
  background: rgba(10, 16, 30, 0.72);
  border: 1px solid rgba(0, 217, 255, 0.26);
  border-radius: 999px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 800;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.zone-pill-link:hover,
.zone-pill-link:focus-visible {
  transform: translateY(-3px);
  color: #07101f;
  background: #00d9ff;
  border-color: #00d9ff;
  box-shadow: 0 0 24px rgba(0, 217, 255, 0.28);
}

/* Responsive */
@media (max-width: 1180px) {
  .zones-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zone-card {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .zones-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zone-wide-card {
    grid-template-columns: 1fr;
  }

  .zone-wide-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .zones {
    padding: 76px 0 70px;
  }

  .zones-grid {
    grid-template-columns: 1fr;
  }

  .zone-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .zone-wide-card {
    padding: 26px 22px;
  }

  .zone-wide-content {
    grid-template-columns: 1fr;
  }

  .zone-wide-actions {
    flex-direction: column;
  }

  .zone-wide-actions .btn,
  .zone-pill-link {
    width: 100%;
  }

  .zones-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================================================
   FIX HERO - HAUTEUR PLUS COMPACTE
   Objectif :
   - Réduire l’espace vide sous le hero
   - Faire remonter la section Services
   - Garder une belle mise en page desktop/mobile
========================================================= */

.hero {
  min-height: auto;
  padding: 135px 0 75px;
}

.hero-premium {
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero h1 {
  margin-bottom: 18px;
}

.hero p {
  margin-bottom: 28px;
}

.hero-buttons {
  margin-bottom: 24px;
}

.hero-trust {
  margin-top: 0;
}

/* Réduit l'espace entre le hero et les services */
.services {
  padding-top: 80px;
}

/* Desktop large */
@media (min-width: 1100px) {
  .hero {
    padding-top: 125px;
    padding-bottom: 65px;
  }
}

/* Tablette */
@media (max-width: 900px) {
  .hero {
    padding: 120px 0 70px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding: 110px 0 60px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .services {
    padding-top: 65px;
  }
}

/* =========================================================
   FIX CTA - BOUTON CENTRÉ
   Objectif :
   - Centrer correctement le bouton "Envoyer un message"
   - Garder les infos et tags bien alignés
========================================================= */

.cta {
  text-align: center;
}

.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta .cta-btn,
.cta a.btn,
.cta .btn-primary {
  margin-left: auto;
  margin-right: auto;
}

.cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 220px;
  margin-bottom: 42px;
}

.cta-infos {
  width: 100%;
  justify-content: center;
}

.cta-tags {
  width: 100%;
  justify-content: center;
}

/* Mobile */
@media (max-width: 600px) {
  .cta .cta-btn {
    width: 100%;
    max-width: 320px;
  }
}
