:root {
  /* Palette principale */
  --navy-1: #08162c;
  --navy-2: #0d1f3b;
  --navy-3: #112849;
  --navy-4: #16345c;

  --blue-1: #0f6fad;
  --blue-2: #1f8ed1;
  --blue-3: #2aa6e8;
  --blue-4: #75d9ff;

  --cyan-glow: rgba(129, 210, 255, 0.35);

  --white: #ffffff;
  --off-white: #f6f8fb;
  --soft-gray: #e9edf3;
  --mid-gray: #b8c3d3;

  --text-dark: #13233f;
  --text-soft: #4f627b;

  --border-light: #dbe3ee;
  --border-soft: #e6edf5;

  --shadow-soft: 0 10px 24px rgba(13, 28, 55, 0.12);
  --shadow-card: 0 8px 22px rgba(19, 35, 63, 0.12);
  --shadow-hero: inset 0 -40px 80px rgba(0, 0, 0, 0.28);

  --radius-sm: 4px;
  --radius-md: 6px;
  --container: 1310px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: relative;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-text {
  color: #111827;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: Georgia, "Times New Roman", serif;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: #173154;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 62px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(to right, #72b9ff, #d7ecff);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(137, 196, 255, 0.8);
}

/* BOUTON APPEL HEADER */
.call-button,
.header-phone {
  flex: 0 0 auto;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 190px;
  height: 46px;
  padding: 0 22px;

  color: #ffffff !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;

  border-radius: 8px;
  background: linear-gradient(to bottom, #249ee0, #0b6da8);
  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 10px rgba(0, 0, 0, 0.16);

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.call-button:hover,
.header-phone:hover {
  transform: translateY(-1px);
  background: linear-gradient(to bottom, #2aa6e8, #0f6fad);
}

.phone-icon {
  font-size: 20px;
  line-height: 1;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(129, 210, 255, 0.18), transparent 18%),
    radial-gradient(circle at 85% 45%, rgba(86, 195, 255, 0.14), transparent 15%),
    linear-gradient(to right, #0d1f3b 0%, #112849 36%, #16345c 100%);
  box-shadow: var(--shadow-hero);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8, 16, 31, 0.42), rgba(7, 17, 33, 0.12)),
    radial-gradient(circle at 78% 20%, rgba(130, 220, 255, 0.18), transparent 30%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(rgba(117, 210, 255, 0.12), rgba(117, 210, 255, 0.12));
  background-size: 120px 120px, 100% 1px;
  background-position: 0 0, 0 100%;
  opacity: 0.18;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 34px 0 42px;
}

.hero-copy {
  max-width: 610px;
  padding-top: 10px;
}

.hero-copy h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 39px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-copy p {
  margin: 0 0 30px;
  max-width: 560px;
  color: rgba(242, 246, 251, 0.95);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(to bottom, #2b9ad8, #0a6ba8);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 6px 14px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
  color: #ffffff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-tech-art {
  position: absolute;
  inset: 0;
}

/* SERVERS */
.server-cluster {
  position: absolute;
  right: 105px;
  top: 34px;
  width: 450px;
  height: 430px;
}

.server {
  position: absolute;
  bottom: 0;
  width: 135px;
  border-radius: 4px;
  background:
    linear-gradient(to right, #223656 0%, #111d31 18%, #203754 35%, #0f1829 100%);
  border: 1px solid rgba(180, 215, 255, 0.16);
  box-shadow:
    0 24px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 20px rgba(150, 210, 255, 0.06);
}

.server::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto 14px;
  height: calc(100% - 28px);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(160, 214, 255, 0.18) 0 2px,
      rgba(16, 29, 48, 0.25) 2px 24px
    );
  opacity: 0.28;
}

.server::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 34px;
  bottom: 34px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(70, 160, 235, 0.95) 0 3px,
      rgba(22, 43, 74, 0.92) 3px 28px
    );
  border-radius: 2px;
  opacity: 0.26;
  box-shadow: 0 0 16px rgba(96, 205, 255, 0.15);
}

.server-1 {
  left: 0;
  height: 290px;
  transform: perspective(600px) rotateY(12deg);
}

.server-2 {
  left: 92px;
  height: 365px;
  transform: perspective(800px) rotateY(9deg);
}

.server-3 {
  left: 186px;
  width: 180px;
  height: 405px;
  transform: perspective(900px) rotateY(-8deg);
}

/* SHIELD */
.shield {
  position: absolute;
  left: 96px;
  top: 158px;
  width: 220px;
  height: 250px;
  background:
    linear-gradient(to bottom, #d9ebf7 0%, #7eaed5 22%, #2a5f90 60%, #173f67 100%);
  clip-path: polygon(50% 0%, 92% 15%, 88% 70%, 50% 100%, 12% 70%, 8% 15%);
  box-shadow:
    0 0 22px rgba(101, 211, 255, 0.42),
    0 20px 26px rgba(0, 0, 0, 0.28);
  border: 6px solid rgba(228, 240, 251, 0.68);
}

.shield::before {
  content: "";
  position: absolute;
  inset: 14px;
  clip-path: inherit;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.82), rgba(47, 109, 165, 0.28) 35%, rgba(15, 42, 74, 0.22));
  opacity: 0.25;
}

.shield-inner {
  position: absolute;
  inset: 0;
}

.lock-top {
  position: absolute;
  left: 50%;
  top: 58px;
  width: 58px;
  height: 52px;
  transform: translateX(-50%);
  border: 12px solid #f4f8fc;
  border-bottom: 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.lock-body {
  position: absolute;
  left: 50%;
  top: 105px;
  width: 86px;
  height: 88px;
  transform: translateX(-50%);
  border-radius: 16px;
  background: linear-gradient(to bottom, #f2f7fc, #d8e5f2);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.lock-body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  width: 18px;
  height: 30px;
  transform: translateX(-50%);
  background: #0f2038;
  border-radius: 9px;
}

.lock-body::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 10px;
  height: 22px;
  transform: translateX(-50%);
  background: #0f2038;
  border-radius: 6px;
}

/* CLOUD */
.cloud {
  position: absolute;
  right: 20px;
  bottom: 78px;
  width: 285px;
  height: 150px;
  filter: drop-shadow(0 0 12px rgba(180, 228, 255, 0.3));
}

.cloud-part,
.cloud-base {
  position: absolute;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.96), rgba(233, 242, 250, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.c1 {
  left: 10px;
  top: 42px;
  width: 92px;
  height: 74px;
  border-radius: 50%;
}

.c2 {
  left: 72px;
  top: 18px;
  width: 112px;
  height: 92px;
  border-radius: 50%;
}

.c3 {
  left: 150px;
  top: 38px;
  width: 100px;
  height: 78px;
  border-radius: 50%;
}

.cloud-base {
  left: 24px;
  bottom: 18px;
  width: 232px;
  height: 68px;
  border-radius: 42px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

/* NETWORK */
.network-lines .line {
  position: absolute;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, rgba(93, 216, 255, 0), rgba(93, 216, 255, 0.92));
  box-shadow: 0 0 8px rgba(93, 216, 255, 0.58);
}

.network-lines .l1 {
  top: 250px;
  width: 270px;
}

.network-lines .l2 {
  top: 296px;
  width: 225px;
}

.network-lines .l3 {
  top: 340px;
  width: 310px;
}

.network-lines .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b9efff;
  box-shadow: 0 0 14px rgba(125, 232, 255, 0.95);
}

.d1 { left: 235px; top: 244px; }
.d2 { left: 190px; top: 290px; }
.d3 { left: 305px; top: 334px; }
.d4 { right: 22px; top: 120px; width: 16px; height: 16px; }

/* SERVICES CARDS */
.services-cards {
  position: relative;
  z-index: 2;
  padding: 26px 0;
  background: linear-gradient(to bottom, #f9fbfd 0%, #f4f7fb 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: linear-gradient(to bottom, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  border-radius: 4px;
  overflow: hidden;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 14px 18px;
  border-bottom: 1px solid #e4ebf3;
}

.card-head h2 {
  margin: 0;
  color: #102647;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.card-icon {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.gear-icon::before {
  content: "⚙";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 32px;
  color: #29446c;
}

.infra-icon::before {
  content: "🖥";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #29446c;
}

.secure-icon::before {
  content: "🛡";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #29446c;
}

.service-card ul {
  padding: 14px 22px 16px 36px;
}

.service-card li {
  position: relative;
  margin: 10px 0;
  color: #183155;
  font-size: 18px;
  line-height: 1.35;
}

.service-card li::before {
  content: "›";
  position: absolute;
  left: -16px;
  top: -1px;
  color: #1d4f8f;
  font-size: 22px;
  line-height: 1;
}

/* BENEFITS */
.benefits {
  padding: 12px 0 24px;
  background: linear-gradient(to bottom, #f7f8fb 0%, #f4f6fa 100%);
}

/* SÉPARATEUR CENTRÉ */
.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
}

.section-title .line {
  height: 1px;
  background: #d0d8e3;
}

.section-title h2 {
  margin: 0;
  color: #19345b;
  text-align: center;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 700;
}

/* POUR QUI */
.pour-qui-block {
  width: 100%;
  max-width: none;
  margin: 0 0 55px 0;
  padding: 45px 30px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid #d8e2ee;
  box-shadow: 0 12px 30px rgba(8, 43, 87, 0.08);
  box-sizing: border-box;
}

.pour-qui-block .section-title {
  margin-bottom: 22px;
}

.client-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 30px auto;
}

.client-card {
  padding: 18px 14px;
  color: #082b57;
  background: #ffffff;
  border: 1px solid #d7e3f0;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(8, 43, 87, 0.08);
}

.pour-qui-title {
  max-width: 900px;
  margin: 0 auto 18px auto;
  color: #062a55;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.pour-qui-intro {
  max-width: 980px;
  margin: 0 auto 28px auto;
  color: #0b315f;
  font-size: 20px;
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.pour-qui-note {
  max-width: 900px;
  margin: 26px auto 0 auto;
  color: #082b57;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
}

/* BENEFITS GRID - VERSION LUMINEUSE */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.benefit-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 32px rgba(6, 15, 33, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 210px;
}

.benefit-top {
  height: 52%;
  min-height: 105px;
  background: linear-gradient(180deg, #17305a 0%, #1f3d72 100%);
  padding: 18px 18px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.benefit-top h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.2vw, 30px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.benefit-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: #1fd4f5;
  filter: drop-shadow(0 0 10px rgba(31, 212, 245, 0.55));
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.benefit-bottom {
  height: 48%;
  min-height: 95px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
}

.benefit-bottom p {
  margin: 0;
  color: #111111;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.35;
  text-align: center;
  font-weight: 500;
}

/* PROCESS */
.process-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.process-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 870px);
  border-radius: 3px;
  overflow: visible;
}

.process-step {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(to bottom, #2b4368, #1a3055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-step:not(:last-child) {
  margin-right: 20px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 20px solid #1a3055;
  z-index: 2;
}

.process-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 20px solid #f4f6fa;
  z-index: 1;
}

.process-step.active {
  background: linear-gradient(to bottom, #1b82c5, #0e5f96);
}

.process-step.active::after {
  border-left-color: #0e5f96;
}

/* ZONES BAR */
.zones-footer-bar {
  background: linear-gradient(to bottom, #22365a, #162747);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.zones-footer-bar p {
  margin: 0;
  padding: 18px 0 20px;
  text-align: center;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* FOOTER */
.site-footer.new-style {
  background: #0a1325;
  color: #ffffff;
  padding: 40px 0 20px;
  position: relative;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 12px 18px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-logo {
  height: 68px;
  width: auto;
}

.logo-text {
  color: #0a1325;
  line-height: 1.1;
  font-size: 0.95rem;
}

.mvse {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #0a1325;
}

.small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.tagline {
  font-size: 0.72rem;
  color: #1e4a8c;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #60a5fa;
}

.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 32px 0 24px;
  width: 100%;
}

.footer-copyright {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  width: 100%;
}

/* MENU BURGER */
.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background: #173154;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 9px; /* plus visible */
  z-index: 999999;
  pointer-events: none;

  background: linear-gradient(90deg, #9fe1ff 0%, #5cbfff 45%, #23a7f0 100%);
  border-radius: 0 999px 999px 0;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 2px 10px rgba(92, 191, 255, 0.75),
    0 0 18px rgba(92, 191, 255, 0.45);
}

/* HEADER AU SCROLL */
.site-header.scrolled {
  position: sticky;
  top: 0;
  z-index: 70;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* INTRO SERVICES */
.services-intro {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  background:
    radial-gradient(circle at 82% 28%, rgba(46, 148, 214, 0.22), transparent 24%),
    linear-gradient(135deg, #08162c 0%, #112947 48%, #172f52 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(2, 8, 20, 0.36), rgba(2, 8, 20, 0.02)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 80px
    );
  pointer-events: none;
}

.services-intro-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
}

.intro-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, rgba(79, 188, 255, 0), rgba(79, 188, 255, 0.82));
  box-shadow: 0 0 10px rgba(79, 188, 255, 0.55);
}

.intro-line-1 {
  right: 10%;
  top: 34%;
  width: 270px;
}

.intro-line-2 {
  right: 18%;
  top: 52%;
  width: 360px;
}

.intro-line-3 {
  right: 8%;
  top: 70%;
  width: 210px;
}

.intro-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #8fd9ff;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(143, 217, 255, 0.95);
}

.intro-dot-1 {
  right: 28%;
  top: 33%;
}

.intro-dot-2 {
  right: 41%;
  top: 51%;
}

.intro-dot-3 {
  right: 21%;
  top: 69%;
}

.services-intro-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 390px;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #80d0ff;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.services-intro-content h1 {
  margin: 0 0 22px;
  max-width: 880px;
  color: #ffffff;
  font-size: 39px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.services-intro-text {
  margin: 0 0 28px;
  max-width: 790px;
  color: rgba(246, 250, 255, 0.88);
  font-size: 18px;
  line-height: 1.55;
}

.services-intro-text strong {
  color: #ffffff;
  font-weight: 800;
}

.services-intro-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.services-intro-panel {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.services-intro-panel::before {
  content: "";
  position: absolute;
  left: 26px;
  top: -3px;
  width: 86px;
  height: 3px;
  background: linear-gradient(to right, #2aa6e8, #8bdcff);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(139, 220, 255, 0.65);
}

.services-intro-panel h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.25;
}

.services-intro-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-intro-panel li {
  position: relative;
  padding-left: 22px;
  margin: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.45;
}

.services-intro-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #82d8ff;
  font-weight: 900;
}

/* POSITIONNEMENT */
.services-positioning {
  padding: 34px 0;
  background: linear-gradient(to bottom, #f8fafc, #eef3f8);
  border-bottom: 1px solid #dce4ef;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.positioning-card {
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid #dce4ee;
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(15, 35, 65, 0.1);
}

.positioning-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  font-size: 25px;
  background: linear-gradient(to bottom, #eef7ff, #dcecf8);
  border: 1px solid #c9ddeb;
  border-radius: 8px;
}

.positioning-card h2 {
  margin: 0 0 12px;
  color: #10294c;
  font-size: 20px;
  line-height: 1.3;
}

.positioning-card p {
  margin: 0;
  color: #334863;
  font-size: 15px;
  line-height: 1.55;
}

/* SERVICES DÉTAILLÉS */
.services-details {
  padding: 42px 0 46px;
  background: #ffffff;
}

.services-detail-list {
  display: grid;
  gap: 18px;
}

.technical-service-card {
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #f9fbfd);
  border: 1px solid #dce4ee;
  border-radius: 8px;
  box-shadow:
    0 8px 20px rgba(15, 35, 65, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.technical-service-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: linear-gradient(to right, #f7fafe, #eef5fb);
  border-bottom: 1px solid #d9e2ec;
}

.technical-service-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  font-size: 30px;
  background: #ffffff;
  border: 1px solid #ccdceb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(18, 43, 76, 0.1);
}

.technical-service-head h3 {
  margin: 0 0 6px;
  color: #0c274b;
  font-size: 22px;
  line-height: 1.25;
}

.technical-service-head p {
  margin: 0;
  color: #43566f;
  font-size: 15px;
  line-height: 1.4;
}

.technical-service-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  padding: 22px 24px 24px;
}

.technical-service-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 26px;
}

.technical-service-body li {
  position: relative;
  break-inside: avoid;
  padding-left: 18px;
  margin: 0 0 11px;
  color: #182f52;
  font-size: 15px;
  line-height: 1.42;
}

.technical-service-body li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  color: #0f6fad;
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
}

.service-note {
  padding: 18px;
  color: #173154;
  background: linear-gradient(to bottom, #eef7ff, #e3f0fa);
  border: 1px solid #c8ddeb;
  border-left: 4px solid #1382c4;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.5;
}

.service-note strong {
  color: #0a274b;
}

/* CLIENTS CIBLES */
.target-clients-section {
  padding: 48px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(51, 157, 224, 0.12), transparent 24%),
    linear-gradient(to bottom, #f4f7fb, #edf2f7);
  border-top: 1px solid #dce4ef;
  border-bottom: 1px solid #dce4ef;
}

.target-clients-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.target-clients-text h2 {
  margin: 0 0 18px;
  color: #10294c;
  font-size: 31px;
  line-height: 1.25;
}

.target-clients-text p:not(.eyebrow) {
  margin: 0 0 14px;
  color: #334863;
  font-size: 16px;
  line-height: 1.58;
}

.target-clients-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.target-card {
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #dce4ee;
  border-radius: 7px;
  box-shadow: 0 7px 18px rgba(15, 35, 65, 0.09);
}

.target-card h3 {
  margin: 0 0 10px;
  color: #0c274b;
  font-size: 20px;
}

.target-card p {
  margin: 0;
  color: #3e5169;
  font-size: 15px;
  line-height: 1.48;
}

/* MÉTHODE LIGHT */
.services-method-light {
  padding: 42px 0 48px;
  background: #ffffff;
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-step {
  position: relative;
  padding: 24px 20px;
  background: linear-gradient(to bottom, #ffffff, #f8fbfe);
  border: 1px solid #dce4ee;
  border-radius: 7px;
  box-shadow: 0 7px 18px rgba(15, 35, 65, 0.08);
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 38px;
  right: -16px;
  width: 16px;
  height: 2px;
  background: #aac5dc;
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 32px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(to bottom, #233d66, #142949);
  border-radius: 4px;
}

.timeline-step h3 {
  margin: 0 0 10px;
  color: #10294c;
  font-size: 19px;
}

.timeline-step p {
  margin: 0;
  color: #40536b;
  font-size: 15px;
  line-height: 1.5;
}

/* CTA */
.services-cta-professional {
  padding: 42px 0 52px;
  background: linear-gradient(135deg, #0c1a31, #172f52);
  color: #ffffff;
}

.services-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.services-cta-box h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.25;
}

.services-cta-box p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.services-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* HEADER LOGO */
.site-header .header-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 6px 10px;
  box-sizing: border-box;
  border-radius: 2px;

  width: 290px;
  min-width: 290px;
  flex-shrink: 0;
  overflow: hidden;
}

.site-header .header-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 56px;
  display: block;
}

.site-header .header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
  white-space: nowrap;
}

.site-header .header-logo-text .mvse {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: Georgia, serif;
  color: #111;
}

.site-header .header-logo-text .small {
  font-size: 0.50rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #24314f;
  margin-top: 3px;
}

.site-header .header-logo-text .tagline {
  font-size: 0.50rem;
  color: #c8a24a;
  margin-top: 3px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .server-cluster {
    right: 60px;
  }

  .shield {
    left: 70px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .services-intro-inner,
  .target-clients-layout,
  .services-cta-box {
    grid-template-columns: 1fr;
  }

  .services-intro-panel {
    max-width: 640px;
  }

  .technical-service-body {
    grid-template-columns: 1fr;
  }

  .technical-service-body ul {
    columns: 1;
  }

  .services-cta-actions {
    justify-content: flex-start;
  }

  .positioning-grid,
  .method-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    justify-items: stretch;
    padding: 14px 0;
  }

  .brand {
    order: 0;
    justify-self: start;
  }

  .nav-toggle {
    display: block;
    order: 1;
    justify-self: end;
  }

  .main-nav {
    width: 100%;
    order: 3;
    display: none;
    justify-content: center;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-list {
    width: 100%;
    padding: 12px 0 4px;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    display: block;
    padding: 12px 14px;
    text-align: center;
    border-radius: 6px;
    background: rgba(13, 31, 59, 0.03);
  }

  .nav-link.active::after {
    display: none;
  }

  .call-button,
  .header-phone {
    order: 4;
    justify-self: center;
    margin-top: 8px;
  }

  .cards-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    grid-template-columns: 1fr;
  }

  .section-title .line {
    display: none;
  }

  .process-bar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .process-step,
  .process-step.active {
    margin-right: 0 !important;
  }

  .process-step::before,
  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .call-button,
  .header-phone {
    width: auto;
    min-width: 210px;
    font-size: 18px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .server-cluster {
    right: 10px;
    top: 20px;
    width: 300px;
    height: 300px;
    transform: scale(0.74);
    transform-origin: top right;
  }

  .shield {
    left: 10px;
    top: 120px;
    transform: scale(0.72);
    transform-origin: top left;
  }

  .cloud {
    right: 0;
    bottom: 40px;
    transform: scale(0.72);
    transform-origin: bottom right;
  }

  .network-lines {
    transform: scale(0.8);
    transform-origin: left center;
  }

  .cards-grid,
  .benefits-grid,
  .process-bar,
  .positioning-grid,
  .method-timeline {
    grid-template-columns: 1fr;
  }

  .card-head h2 {
    font-size: 18px;
  }

  .service-card li {
    font-size: 17px;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .benefit-top h3 {
    font-size: 20px;
  }

  .zones-footer-bar p {
    font-size: 18px;
    line-height: 1.5;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-logo-box {
    margin-bottom: 20px;
  }

  .footer-links {
    justify-content: center;
    gap: 24px;
  }

  .services-intro {
    padding: 46px 0 42px;
  }

  .services-intro-content h1 {
    font-size: 30px;
  }

  .services-intro-text {
    font-size: 16px;
  }

  .services-intro-actions {
    flex-direction: column;
  }

  .services-intro-actions .btn {
    width: 100%;
  }

  .technical-service-head {
    grid-template-columns: 1fr;
  }

  .technical-service-body {
    padding: 20px;
  }

  .target-clients-text h2 {
    font-size: 25px;
  }

  .services-cta-box {
    padding: 24px 20px;
  }

  .services-cta-box h2 {
    font-size: 23px;
  }

  .services-cta-actions {
    flex-direction: column;
  }

  .services-cta-actions .btn {
    width: 100%;
  }

  .client-types {
    grid-template-columns: 1fr;
  }

  .pour-qui-block {
    padding: 34px 20px;
  }

  .pour-qui-title {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 22px;
  }

  .technical-service-head h3 {
    font-size: 20px;
  }

  .technical-service-icon {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }

  .services-details,
  .target-clients-section,
  .services-method-light,
  .services-cta-professional {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .call-button,
  .header-phone,
  .nav-toggle span {
    transition: none;
  }
}

/* =========================
   CORRECTIFS D'AFFICHAGE
   ========================= */

/* 1) Titre "Pourquoi choisir M.V.S.E IT" bien centré */
.why-section .section-title-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.why-section .section-title-row h2 {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
  width: fit-content;
}

@media (max-width: 768px) {
  .why-section .section-title-row {
    grid-template-columns: 1fr;
  }

  .why-section .section-line {
    display: none;
  }

  .why-section .section-title-row h2 {
    white-space: normal;
  }
}

/* 2) Ligne "Doubs ・ France ・ Suisse (Canton de Vaud)" visible */
.zones-footer-bar {
  position: relative;
  z-index: 5;
  background: linear-gradient(to bottom, #22365a, #162747);
}

.zones-footer-bar p {
  display: block;
  margin: 0;
  padding: 18px 16px 20px;
  text-align: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2px;
  opacity: 1;
  white-space: normal;
}

/* 3) Étapes Analyse / Recommandation / Mise en Place / Suivi visibles et propres */
.process-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.process-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  width: fit-content;
  max-width: 100%;
  overflow: visible;
}

.process-step {
  position: relative;
  min-width: 190px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(to bottom, #2b4368, #1a3055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.process-step:not(:last-child) {
  margin-right: 20px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 20px solid #1a3055;
  z-index: 2;
}

.process-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 20px solid #f4f6fa;
  z-index: 1;
}

.process-step.active {
  background: linear-gradient(to bottom, #1b82c5, #0e5f96);
}

.process-step.active::after {
  border-left-color: #0e5f96;
}

/* Mobile : les étapes passent en colonne si besoin */
@media (max-width: 768px) {
  .process-bar {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .process-step {
    min-width: 0;
    width: 100%;
    margin-right: 0 !important;
    border-radius: 8px;
  }

  .process-step::before,
  .process-step::after {
    display: none;
  }
}

/* =========================
   FIX FLECHES PROCESS
   ========================= */

.process-wrap {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
}

.process-bar {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  justify-content: center;
  width: max-content !important;
  max-width: none !important;
  gap: 0 !important;
}

.process-step {
  position: relative !important;
  flex: 0 0 auto !important;
  min-width: 180px;
  min-height: 42px;
  padding: 0 28px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(to bottom, #2b4368, #1a3055);
  overflow: visible !important;
  z-index: 1;
}

/* Flèche de séparation à droite */
.process-step:not(:last-child) {
  margin-right: 20px !important;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 20px solid #1a3055;
  z-index: 3;
}

/* Petite découpe à gauche pour l'effet "chevron" */
.process-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 20px solid #f4f6fa;
  z-index: 2;
}

/* Étape active */
.process-step.active {
  background: linear-gradient(to bottom, #1b82c5, #0e5f96);
}

.process-step.active::after {
  border-left-color: #0e5f96;
}

/* Mobile : on garde la ligne avec scroll horizontal */
@media (max-width: 768px) {
  .process-wrap {
    justify-content: flex-start !important;
  }

  .process-bar {
    width: max-content !important;
  }

  .process-step {
    min-width: 150px;
    font-size: 16px;
  }

  .process-step::before,
  .process-step::after {
    display: block !important;
  }
}

/* =========================
   CORRECTION POUR .steps-bar / .step
   ========================= */

/* Titre "Pourquoi choisir M.V.S.E IT" centré */
.why-section .section-title-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.why-section .section-title-row h2 {
  text-align: center;
  justify-self: center;
  white-space: nowrap;
  margin: 0;
}

.why-section .section-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.45), transparent);
}

/* Ligne du bas visible */
.bottom-band {
  position: relative;
  z-index: 5;
  display: block;
}

.bottom-band {
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  padding: 18px 16px 20px;
  line-height: 1.4;
  white-space: normal;
}

/* Étapes Analyse / Recommandation / Mise en Place / Suivi */
.steps-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin: 26px auto 0;
  overflow: visible;
}

/* Chaque étape */
.step {
  position: relative;
  flex: 0 0 auto;
  min-width: 180px;
  min-height: 42px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(to bottom, #2b4368, #1a3055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: visible;
}

/* Décalage entre les blocs */
.step:not(:last-child) {
  margin-right: 20px;
}

/* Flèche droite */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 20px solid #1a3055;
  z-index: 3;
}

/* Découpe gauche pour effet chevron */
.step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 20px solid #f4f6fa;
  z-index: 2;
}

/* Étape active */
.step.active {
  background: linear-gradient(to bottom, #1b82c5, #0e5f96);
}

.step.active::after {
  border-left-color: #0e5f96;
}

/* Mobile : on garde la ligne, avec scroll horizontal si besoin */
@media (max-width: 768px) {
  .steps-bar {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
  }

  .step {
    min-width: 150px;
    font-size: 16px;
  }

  .step::before,
  .step::after {
    display: block;
  }

  .why-section .section-title-row {
    grid-template-columns: 1fr;
  }

  .why-section .section-line {
    display: none;
  }

  .why-section .section-title-row h2 {
    white-space: normal;
  }
}

/* =========================
   BANDEAU DU BAS CORRIGÉ
   ========================= */

/* enlève l'espace sous les étapes */
.why-section {
  padding-bottom: 0;
}

.why-inner {
  padding-bottom: 0;
}

.steps-bar {
  margin-bottom: 0;
}

/* bandeau bleu du bas */
.bottom-band {
  position: relative;
  z-index: 5;
  display: block;
  width: 100vw; /* prend toute la largeur de l'écran */
  margin-left: calc(50% - 50vw); /* sort du container */
  margin-top: 0;
  padding: 18px 16px 20px;
  background: linear-gradient(to bottom, #22365a, #162747);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  color: #ffffff;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2px;
  opacity: 1;
}

/* sécurité mobile */
@media (max-width: 768px) {
  .bottom-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-size: 18px;
    line-height: 1.5;
    padding: 16px 14px 18px;
  }
}

/* =========================
   FIX VISUEL BANDEAU + FOOTER
   ========================= */

/* Supprime tout espace parasite sous la zone "Pourquoi choisir..." */
.why-section {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.why-inner {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.steps-bar {
  margin-bottom: 0 !important;
}

/* Bandeau bleu du bas bien collé et visible */
.bottom-band {
  display: block;
  width: 100%;
  margin: 0;
  padding: 18px 16px 20px;
  background: linear-gradient(to bottom, #22365a, #162747);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  color: #ffffff;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2px;
  opacity: 1;
  position: relative;
  z-index: 10;
}

/* Le footer doit démarrer juste après, sans effet de séparation bizarre */
.site-footer.new-style {
  margin-top: 0 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .bottom-band {
    font-size: 18px;
    line-height: 1.5;
    padding: 16px 14px 18px;
  }
}

/* =========================
   ESPACE ENTRE ETAPES ET BANDEAU DU BAS
   ========================= */

.steps-bar {
  margin-bottom: 18px !important;
}

.bottom-band {
  margin-top: 0 !important;
}

/* =========================
   HEADER STYLE PLUS ÉLÉGANT
   ========================= */

.site-header {
  position: relative;
  z-index: 20;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  border-bottom: 1px solid #e6edf5;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo plus propre, plus compact */
.site-header .header-logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 3px;
  border: 1px solid #edf2f7;
  box-shadow: 0 3px 10px rgba(15, 35, 65, 0.08);
  width: auto;
  min-width: 0;
  flex-shrink: 0;
  overflow: visible;
}

.site-header .header-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 62px;
  display: block;
}

.site-header .header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}

.site-header .header-logo-text .mvse {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: Georgia, serif;
  color: #0f1f3b;
}

.site-header .header-logo-text .small {
  font-size: 0.58rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #3a4b69;
  margin-top: 4px;
}

.site-header .header-logo-text .tagline {
  font-size: 0.56rem;
  color: #c89f4a;
  margin-top: 4px;
}

/* Navigation plus aérienne */
.main-nav {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  display: inline-block;
  color: #10294c;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #0f6fad;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 42px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(to right, #8fcaff, #d9ecff);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(137, 196, 255, 0.45);
}

/* Bouton d'appel plus moderne */
.call-button,
.header-phone {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-width: 188px;
  height: 48px;
  padding: 0 24px;

  color: #ffffff !important;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;

  border-radius: 8px;
  background: linear-gradient(to bottom, #2aa6e8, #0b6da8);
  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 5px 14px rgba(0, 0, 0, 0.16);

  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.call-button:hover,
.header-phone:hover {
  transform: translateY(-1px);
  background: linear-gradient(to bottom, #35b1ee, #0e5f96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 7px 16px rgba(0, 0, 0, 0.18);
}

/* Burger plus discret */
.nav-toggle span {
  background: #10294c;
}

/* Mobile */
@media (max-width: 980px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
  }

  .site-header .header-logo-box {
    width: auto;
    padding: 8px 12px;
  }

  .site-header .header-logo {
    width: 54px;
    height: 54px;
  }

  .nav-list {
    gap: 8px;
  }

  .nav-link.active::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header .header-logo-box {
    padding: 7px 10px;
  }

  .site-header .header-logo-text .mvse {
    font-size: 0.95rem;
  }

  .site-header .header-logo-text .small,
  .site-header .header-logo-text .tagline {
    font-size: 0.5rem;
  }
}

/* =========================
   LOGO HEADER = MEME STYLE COULEUR
   ========================= */

.site-header .header-logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 2px;
  border: 1px solid #eef2f7;
  box-shadow: 0 2px 8px rgba(15, 35, 65, 0.08);
}

.site-header .header-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
  flex: 0 0 74px;
}

.site-header .header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}

.site-header .header-logo-text .mvse {
  color: #0b1632;          /* bleu nuit / noir */
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 3px;
}

.site-header .header-logo-text .small {
  color: #2f3f63;          /* gris-bleu */
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-top: 4px;
}

.site-header .header-logo-text .tagline {
  color: #1f57d6;          /* bleu */
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 4px;
}

/* éviter que le header impose une autre couleur */
.site-header .header-logo-text * {
  opacity: 1 !important;
}

/* =========================
   BARRE DE SCROLL BLEU CLAIR
   ========================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.75);
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #9fe1ff, #5cbfff, #8ed7ff);
  box-shadow: 0 0 10px rgba(92, 191, 255, 0.7);
  transition: width 0.08s linear;
}

/* =========================================================
   SERVICES PAGE — OVERRIDES
   À placer tout en bas de style.css
   ========================================================= */

/* Barre de progression du scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  z-index: 9999;
  pointer-events: none;
  background: linear-gradient(90deg, #9fe1ff 0%, #5cbfff 45%, #23a7f0 100%);
  box-shadow: 0 0 10px rgba(92, 191, 255, 0.7);
}

/* HERO SERVICES */
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(100, 179, 255, 0.18), transparent 18%),
    radial-gradient(circle at 78% 20%, rgba(120, 206, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #0d2143 0%, #16335b 100%);
  box-shadow: inset 0 -40px 80px rgba(0, 0, 0, 0.18);
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(4, 10, 22, 0.35), rgba(4, 10, 22, 0.08)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 84px
    );
  pointer-events: none;
}

.services-hero .hero-inner {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 28px 0 24px;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: center;
}

.services-hero .hero-copy {
  max-width: 920px;
  padding-top: 0;
}

.services-hero .hero-copy h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(44px, 4vw, 70px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.services-hero .hero-copy p {
  margin: 0 0 22px;
  max-width: 980px;
  color: rgba(246, 250, 255, 0.92);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.5;
}

.services-hero .hero-copy p strong {
  font-weight: 800;
}

.services-hero .hero-copy p em {
  font-style: italic;
  font-weight: 700;
}

.services-hero .hero-actions {
  margin-top: 8px;
}

.services-hero .btn-primary {
  min-width: 220px;
  height: 46px;
}

/* zone visuelle hero */
.services-hero .hero-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

/* on réduit l’art serveur pour correspondre à l’image */
.services-hero .server-cluster {
  right: 8px;
  top: 10px;
  transform: scale(0.62);
  transform-origin: top right;
}

.services-hero .shield {
  left: 18px;
  top: 82px;
  transform: scale(0.62);
  transform-origin: top left;
}

.services-hero .cloud {
  right: 0;
  bottom: 8px;
  transform: scale(0.68);
  transform-origin: bottom right;
}

.services-hero .network-lines {
  transform: scale(0.78);
  transform-origin: left center;
}

/* GRID DE CARTES */
.services-showcase {
  position: relative;
  padding: 22px 0 44px;
  background:
    radial-gradient(circle at 0% 20%, rgba(160, 190, 220, 0.12), transparent 18%),
    radial-gradient(circle at 100% 40%, rgba(160, 190, 220, 0.12), transparent 20%),
    linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* CARTE SERVICE */
.service-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 186px;
  padding: 18px 22px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(13, 28, 55, 0.12);
}

.service-feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-feature-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  color: #1d4f8f;
}

.service-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

.service-feature-card h2 {
  margin: 0;
  color: #102647;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
}

.service-divider {
  margin-top: 10px;
  height: 1px;
  background: linear-gradient(to right, #dbe4ee, #edf2f7);
}

.service-feature-card ul {
  margin: 14px 0 0;
  padding: 0 0 0 20px;
  list-style: none;
  max-width: 68%;
}

.service-feature-card li {
  position: relative;
  margin: 9px 0;
  color: #183155;
  font-size: 16px;
  line-height: 1.4;
}

.service-feature-card li::before {
  content: "•";
  position: absolute;
  left: -18px;
  top: 0;
  color: #1d4f8f;
  font-size: 20px;
  line-height: 1;
}

/* Espace pour l’illustration en bas à droite */
.service-card-maintenance,
.service-card-infra,
.service-card-cyber,
.service-card-existing {
  padding-right: 160px;
}

.card-art {
  position: absolute;
  right: 12px;
  bottom: 10px;
  pointer-events: none;
}

/* Illustration 1 : serveurs */
.card-art-servers {
  width: 136px;
  height: 80px;
}

.art-server {
  position: absolute;
  bottom: 0;
  width: 34px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2c4b75 0%, #13253d 100%);
  border: 1px solid rgba(174, 205, 246, 0.36);
  box-shadow:
    0 12px 18px rgba(9, 21, 38, 0.16),
    inset 0 0 12px rgba(148, 215, 255, 0.08);
}

.art-server::before {
  content: "";
  position: absolute;
  inset: 8px 6px 8px;
  border-radius: 2px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(151, 214, 255, 0.65) 0 2px,
      rgba(18, 34, 56, 0.2) 2px 16px
    );
  opacity: 0.7;
}

.art-server::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 5px;
  height: 2px;
  border-radius: 999px;
  background: rgba(164, 222, 255, 0.55);
  box-shadow: 0 0 8px rgba(100, 205, 255, 0.35);
}

.art-server-1 {
  right: 82px;
  height: 42px;
}

.art-server-2 {
  right: 42px;
  height: 56px;
}

.art-server-3 {
  right: 0;
  height: 68px;
}

/* Illustration 2 : réseau / déploiement */
.card-art-network {
  width: 160px;
  height: 86px;
}

.card-art-network::before,
.card-art-network::after {
  content: "";
  position: absolute;
  right: 0;
  border-radius: 999px;
}

.card-art-network::before {
  bottom: 14px;
  width: 150px;
  height: 2px;
  background: linear-gradient(to right, rgba(95, 171, 224, 0), rgba(95, 171, 224, 0.82));
  box-shadow:
    0 -16px 0 0 rgba(95, 171, 224, 0.65),
    0 -32px 0 0 rgba(95, 171, 224, 0.45);
}

.card-art-network::after {
  right: 12px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border: 3px solid rgba(123, 187, 230, 0.45);
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(25deg);
  box-shadow: 0 0 16px rgba(123, 187, 230, 0.18);
}

/* Illustration 3 : bouclier */
.card-art-shield {
  width: 150px;
  height: 92px;
}

.card-art-shield::before {
  content: "";
  position: absolute;
  right: 54px;
  bottom: 0;
  width: 82px;
  height: 96px;
  clip-path: polygon(50% 0%, 92% 15%, 88% 68%, 50% 100%, 12% 68%, 8% 15%);
  background: linear-gradient(180deg, #dfeaf7 0%, #7eaad0 24%, #2f5f8f 66%, #17365d 100%);
  border: 4px solid rgba(230, 240, 250, 0.65);
  box-shadow: 0 0 18px rgba(101, 211, 255, 0.24);
}

.card-art-shield::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 66px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 242, 250, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 14px rgba(180, 228, 255, 0.22);
}

/* Illustration 4 : cloud */
.card-art-cloud {
  width: 150px;
  height: 88px;
}

.card-art-cloud::before {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 84px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 242, 250, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 14px rgba(180, 228, 255, 0.18);
}

.card-art-cloud::after {
  content: "";
  position: absolute;
  right: 70px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 242, 250, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 14px rgba(180, 228, 255, 0.18);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-hero .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 30px;
  }

  .services-hero .hero-visual {
    min-height: 330px;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-hero .hero-copy h1 {
    font-size: 32px;
  }

  .services-hero .hero-copy p {
    font-size: 17px;
  }

  .services-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-hero .hero-actions .btn {
    width: 100%;
  }

  .services-hero .hero-visual {
    min-height: 290px;
  }

  .services-hero .server-cluster {
    right: -8px;
    top: 0;
    transform: scale(0.54);
  }

  .services-hero .shield {
    left: 0;
    top: 86px;
    transform: scale(0.54);
  }

  .services-hero .cloud {
    right: -6px;
    bottom: 0;
    transform: scale(0.58);
  }

  .services-hero .network-lines {
    transform: scale(0.72);
  }

  .service-feature-card {
    padding: 18px 18px 18px;
    padding-right: 18px;
  }

  .service-feature-card ul {
    max-width: 100%;
  }

  .card-art {
    position: relative;
    right: auto;
    bottom: auto;
    margin-left: auto;
    margin-top: 14px;
  }

  .service-card-maintenance,
  .service-card-infra,
  .service-card-cyber,
  .service-card-existing {
    padding-right: 18px;
  }
}

@media (max-width: 520px) {
  .services-hero .hero-copy h1 {
    font-size: 28px;
  }

  .services-hero .hero-visual {
    min-height: 260px;
  }

  .service-feature-card h2 {
    font-size: 19px;
  }
}

/* ============================================================
   SERVICES — CARTES REDESIGNÉES (look moderne)
   ============================================================ */

.services-showcase {
  padding: 28px 0 52px;
  background:
    radial-gradient(ellipse at 6% 0%,   rgba(185, 215, 245, 0.22), transparent 36%),
    radial-gradient(ellipse at 94% 100%, rgba(185, 215, 245, 0.16), transparent 36%),
    linear-gradient(180deg, #edf3f9 0%, #e2ecf5 100%);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ---- Carte ---- */
.service-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d6e2ef;
  box-shadow:
    0 2px 4px  rgba(12, 26, 52, 0.04),
    0 10px 26px rgba(12, 26, 52, 0.09);
  padding: 0;
  min-height: auto;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-feature-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 6px 12px  rgba(12, 26, 52, 0.07),
    0 18px 36px rgba(12, 26, 52, 0.13);
}

/* ---- En-tête ---- */
.service-feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 16px;
  background: linear-gradient(135deg, #f3f8fd 0%, #e7f1fa 100%);
  border-bottom: 1px solid #d4e3f0;
  margin-bottom: 0;
}

/* ---- Badge icône bleu ---- */
.service-feature-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2178d4, #0d4fa0);
  border-radius: 10px;
  color: #ffffff;
  box-shadow:
    0 4px 10px rgba(13, 79, 160, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* SVG en mode stroke (outline) */
.service-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  overflow: visible;
}

.service-feature-head h2 {
  margin: 0;
  color: #0c2444;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

/* Diviseur remplacé par border-bottom du head */
.service-divider { display: none; }

/* ---- Liste ---- */
.service-feature-card ul {
  margin: 0;
  padding: 16px 22px 18px;
  list-style: none;
  max-width: 65%;    /* laisse la place à l'illustration */
  flex: 1;
}

.service-feature-card li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  color: #2b4162;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
}

/* Checkmarks ✓ */
.service-feature-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a63b8;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.48;
}

/* ---- Illustration décorative ---- */
.card-art {
  position: absolute;
  right: 14px;
  bottom: 14px;
  pointer-events: none;
  opacity: 0.55;
}

/* Annule l'ancien padding-right sur les cartes */
.service-card-maintenance,
.service-card-infra,
.service-card-cyber,
.service-card-existing {
  padding-right: 0 !important;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .services-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .service-feature-card ul { max-width: 100%; }
  .card-art { display: none; }
}

/* =========================================================
   SERVICES PAGE — VERSION PROPRE
   ========================================================= */

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  z-index: 9999;
  pointer-events: none;
  background: linear-gradient(90deg, #9fe1ff 0%, #5cbfff 45%, #23a7f0 100%);
  box-shadow: 0 0 10px rgba(92, 191, 255, 0.7);
}

/* HERO SERVICES */
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(100, 179, 255, 0.18), transparent 18%),
    radial-gradient(circle at 78% 20%, rgba(120, 206, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #0d2143 0%, #16335b 100%);
  box-shadow: inset 0 -40px 80px rgba(0, 0, 0, 0.18);
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(4, 10, 22, 0.35), rgba(4, 10, 22, 0.08)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 84px
    );
  pointer-events: none;
}

.services-hero .hero-inner {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 28px 0 24px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: center;
}

.services-hero .hero-copy {
  max-width: 920px;
  padding-top: 0;
}

.services-hero .hero-copy h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(44px, 4vw, 70px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.services-hero .hero-copy p {
  margin: 0 0 22px;
  max-width: 980px;
  color: rgba(246, 250, 255, 0.92);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.5;
}

.services-hero .hero-copy p strong {
  font-weight: 800;
}

.services-hero .hero-copy p em {
  font-style: italic;
  font-weight: 700;
}

.services-hero .hero-actions {
  margin-top: 8px;
}

.services-hero .btn-primary {
  min-width: 220px;
  height: 46px;
}

/* Hero visuel */
.services-hero .hero-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.services-hero .server-cluster {
  right: 8px;
  top: 10px;
  transform: scale(0.62);
  transform-origin: top right;
}

.services-hero .shield {
  left: 18px;
  top: 82px;
  transform: scale(0.62);
  transform-origin: top left;
}

.services-hero .cloud {
  right: 0;
  bottom: 8px;
  transform: scale(0.68);
  transform-origin: bottom right;
}

.services-hero .network-lines {
  transform: scale(0.78);
  transform-origin: left center;
}

/* SHOWCASE */
.services-showcase {
  position: relative;
  padding: 28px 0 52px;
  background:
    radial-gradient(ellipse at 6% 0%, rgba(185, 215, 245, 0.22), transparent 36%),
    radial-gradient(ellipse at 94% 100%, rgba(185, 215, 245, 0.16), transparent 36%),
    linear-gradient(180deg, #edf3f9 0%, #e2ecf5 100%);
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* Carte */
.service-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d6e2ef;
  box-shadow:
    0 2px 4px rgba(12, 26, 52, 0.04),
    0 10px 26px rgba(12, 26, 52, 0.09);
  padding: 0;
  min-height: auto;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-feature-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 6px 12px rgba(12, 26, 52, 0.07),
    0 18px 36px rgba(12, 26, 52, 0.13);
}

/* En-tête carte */
.service-feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 16px;
  background: linear-gradient(135deg, #f3f8fd 0%, #e7f1fa 100%);
  border-bottom: 1px solid #d4e3f0;
}

.service-feature-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2178d4, #0d4fa0);
  border-radius: 10px;
  color: #ffffff;
  box-shadow:
    0 4px 10px rgba(13, 79, 160, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.service-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.service-feature-head h2 {
  margin: 0;
  color: #0c2444;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

/* on cache le diviseur parce que le header suffit */
.service-divider {
  display: none;
}

/* Liste */
.service-feature-card ul {
  margin: 0;
  padding: 16px 22px 18px;
  list-style: none;
  max-width: 100%;
  flex: 1;
}

.service-feature-card li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  color: #2b4162;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
}

.service-feature-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a63b8;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.48;
}

/* Supprime les visuels décoratifs */
.card-art {
  display: none !important;
}

/* enlever l'espace réservé aux visuels */
.service-card-maintenance,
.service-card-infra,
.service-card-cyber,
.service-card-existing {
  padding-right: 0 !important;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-hero .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 30px;
  }

  .services-hero .hero-visual {
    min-height: 330px;
  }

  .services-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-hero .hero-copy h1 {
    font-size: 32px;
  }

  .services-hero .hero-copy p {
    font-size: 17px;
  }

  .services-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-hero .hero-actions .btn {
    width: 100%;
  }

  .services-hero .hero-visual {
    min-height: 290px;
  }

  .services-hero .server-cluster {
    right: -8px;
    top: 0;
    transform: scale(0.54);
  }

  .services-hero .shield {
    left: 0;
    top: 86px;
    transform: scale(0.54);
  }

  .services-hero .cloud {
    right: -6px;
    bottom: 0;
    transform: scale(0.58);
  }

  .services-hero .network-lines {
    transform: scale(0.72);
  }

  .service-feature-card {
    padding: 18px;
  }

  .service-feature-card ul {
    padding-left: 18px;
  }
}

@media (max-width: 520px) {
  .services-hero .hero-copy h1 {
    font-size: 28px;
  }

  .services-hero .hero-visual {
    min-height: 260px;
  }

  .service-feature-head h2 {
    font-size: 17px;
  }
}

:root {
  /* Palette principale */
  --navy-1: #08162c;
  --navy-2: #0d1f3b;
  --navy-3: #112849;
  --navy-4: #16345c;
  --blue-1: #0f6fad;
  --blue-2: #1f8ed1;
  --blue-3: #2aa6e8;
  --blue-4: #75d9ff;
  --cyan-glow: rgba(129, 210, 255, 0.35);

  --white: #ffffff;
  --off-white: #f6f8fb;
  --soft-gray: #e9edf3;
  --mid-gray: #b8c3d3;
  --text-dark: #13233f;
  --text-soft: #4f627b;
  --border-light: #dbe3ee;
  --border-soft: #e6edf5;

  --shadow-soft: 0 10px 24px rgba(13, 28, 55, 0.12);
  --shadow-card: 0 8px 22px rgba(19, 35, 63, 0.12);
  --shadow-hero: inset 0 -40px 80px rgba(0, 0, 0, 0.28);

  --radius-sm: 4px;
  --radius-md: 6px;
  --container: 1310px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* ==================== HEADER & FOOTER (inchangés) ==================== */
.site-header, .header-inner, .brand, .main-nav, .nav-list, .nav-link,
.call-button, .header-phone, .scroll-progress, .site-header.scrolled,
.site-footer.new-style, .footer-inner, .footer-logo-box, .footer-links,
.footer-separator, .footer-copyright, .nav-toggle {
  /* Toutes les règles existantes du header et footer sont conservées */
  /* (Je ne les répète pas ici pour la clarté, mais elles restent identiques) */
}

/* ==================== GLASSMORPHISM — SERVICES ==================== */
.services-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #ffffff;
  background: linear-gradient(180deg, #0d2143 0%, #16335b 100%);
  box-shadow: var(--shadow-hero);
}

.services-hero .hero-inner {
  min-height: 230px;
  padding: 32px 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.services-hero .hero-copy h1 {
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.services-hero .hero-copy p {
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
  opacity: 0.95;
}

/* Showcase avec fond adapté au glass effect */
.services-showcase {
  padding: 60px 20px 80px;
  background: linear-gradient(135deg, #f0f6fc 0%, #e2ebf7 100%);
  position: relative;
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(147, 197, 253, 0.12), transparent 40%),
              radial-gradient(circle at 85% 75%, rgba(147, 197, 253, 0.10), transparent 40%);
  pointer-events: none;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

/* === EFFET VERRE SEMI-TRANSPARENT (Glassmorphism) === */
.service-feature-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 8px 32px -6px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

.service-feature-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px 18px;
  background: rgba(240, 248, 255, 0.75);
  border-bottom: 1px solid rgba(180, 210, 255, 0.4);
}

.service-feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35);
}

.service-feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
  stroke-width: 2.25;
  fill: none;
}

.service-feature-head h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.service-feature-card ul {
  margin: 0;
  padding: 18px 26px 26px;
  list-style: none;
  flex: 1;
}

.service-feature-card li {
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
  color: #1e3a5f;
  font-size: 15.2px;
  line-height: 1.55;
}

.service-feature-card li:last-child { margin-bottom: 0; }

.service-feature-card li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: #1e63c5;
  font-weight: 900;
  font-size: 17px;
}

/* Suppression des illustrations décoratives (ce que vous aviez entouré en vert) */
.card-art, .art-server, .card-art-servers, .card-art-network,
.card-art-shield, .card-art-cloud {
  display: none !important;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-cards-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .services-showcase { padding: 40px 16px 60px; }
  .service-feature-head { padding: 18px 20px 16px; }
}

/* ===== GLASSMORPHISM FINAL ===== */

.services-showcase {
  position: relative;
  padding: 28px 0 52px;
  background:
    radial-gradient(circle at 10% 0%, rgba(120, 180, 255, 0.22), transparent 28%),
    radial-gradient(circle at 90% 100%, rgba(120, 180, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #dfeaf7 0%, #cfddee 100%);
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 80px
    );
  pointer-events: none;
}

.service-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58) !important;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.68) !important;
  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 16px;
  background: rgba(240, 248, 255, 0.62);
  border-bottom: 1px solid rgba(180, 210, 255, 0.35);
}

.service-feature-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2178d4, #0d4fa0);
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(13, 79, 160, 0.30);
}

.service-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-feature-head h2 {
  margin: 0;
  color: #0c2444;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.service-feature-card ul {
  margin: 0;
  padding: 16px 22px 18px;
  list-style: none;
  max-width: 100%;
}

.service-feature-card li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  color: #2b4162;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
}

.service-feature-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a63b8;
  font-size: 14px;
  font-weight: 800;
}

/* Supprimer les visuels décoratifs */
.card-art,
.art-server,
.card-art-servers,
.card-art-network,
.card-art-shield,
.card-art-cloud {
  display: none !important;
}

/* Les cartes prennent toute la largeur */
.service-card-maintenance,
.service-card-infra,
.service-card-cyber,
.service-card-existing {
  padding-right: 0 !important;
}

@media (max-width: 1024px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-showcase {
    padding: 24px 0 40px;
  }

  .service-feature-card {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

/* =========================================================
   VERSION EXACTE "CE QUE JE VEUX" — GLASS LIGHT
   ========================================================= */

.services-showcase {
  position: relative;
  padding: 24px 0 42px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.42), transparent 30%),
    radial-gradient(circle at 82% 100%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #dce6f1 0%, #cfdae7 100%);
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.10), transparent 18%),
    radial-gradient(circle at 88% 70%, rgba(255, 255, 255, 0.10), transparent 20%);
  pointer-events: none;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52) !important;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 10px 26px rgba(15, 23, 42, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.service-feature-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.60) !important;
  box-shadow:
    0 14px 30px rgba(15, 23, 42, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.60);
}

.service-feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 16px;
  background: rgba(245, 250, 255, 0.60);
  border-bottom: 1px solid rgba(200, 216, 235, 0.50);
}

.service-feature-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2b74d8, #1f63c5);
  border-radius: 10px;
  color: #ffffff;
  box-shadow:
    0 4px 10px rgba(31, 99, 197, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.service-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.service-feature-head h2 {
  margin: 0;
  color: #173154;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.service-divider {
  display: none;
}

.service-feature-card ul {
  margin: 0;
  padding: 16px 22px 18px;
  list-style: none;
  max-width: 100%;
}

.service-feature-card li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  color: #2b4162;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
}

.service-feature-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f63c5;
  font-size: 14px;
  font-weight: 800;
}

/* Supprimer les visuels décoratifs */
.card-art,
.art-server,
.card-art-servers,
.card-art-network,
.card-art-shield,
.card-art-cloud {
  display: none !important;
}

.service-card-maintenance,
.service-card-infra,
.service-card-cyber,
.service-card-existing {
  padding-right: 0 !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-showcase {
    padding: 22px 0 36px;
  }

  .service-feature-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .service-feature-head {
    padding: 16px 18px 14px;
  }

  .service-feature-card ul {
    padding: 14px 18px 16px;
  }
}

.page-mentions-legales .legal-contact-block {
  margin-top: 18px;
}

.page-mentions-legales .legal-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 340px;
  margin: 12px 0 14px;
}

.page-mentions-legales .legal-contact-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.2;
  border-radius: 10px;
  white-space: nowrap;

  background: #ffffff;
  color: #0f6fad;
  border: 1px solid #dbe4ef;
  box-shadow: 0 4px 12px rgba(15, 35, 65, 0.08);
}

.page-mentions-legales .legal-contact-buttons .btn:hover {
  background: #f4f8fc;
}

/* =========================================================
   PAGE ZONE D'INTERVENTION — STYLE ALIGNÉ INDEX
   ========================================================= */

.zone-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(129, 210, 255, 0.18), transparent 18%),
    radial-gradient(circle at 85% 45%, rgba(86, 195, 255, 0.14), transparent 15%),
    linear-gradient(to right, #0d1f3b 0%, #112849 36%, #16345c 100%);
  box-shadow: var(--shadow-hero);
}

.zone-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8, 16, 31, 0.50), rgba(7, 17, 33, 0.18)),
    radial-gradient(circle at 78% 20%, rgba(130, 220, 255, 0.18), transparent 30%);
  pointer-events: none;
}

.zone-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

.zone-hero-copy {
  max-width: 860px;
}

.zone-kicker {
  margin: 0 0 14px;
  color: #80d0ff;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.zone-kicker-dark {
  color: #0f6fad;
}

.zone-hero-copy h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.zone-hero-copy p {
  margin: 0 0 28px;
  max-width: 780px;
  color: rgba(242, 246, 251, 0.95);
  font-size: 21px;
  line-height: 1.5;
}

.zone-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.zone-hero-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(143, 217, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* SECTIONS */
.zone-section,
.zone-map-section,
.zone-cta-section {
  padding: 54px 0;
  background: linear-gradient(to bottom, #f9fbfd 0%, #f4f7fb 100%);
}

.zone-map-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(120, 180, 255, 0.16), transparent 28%),
    radial-gradient(circle at 90% 100%, rgba(120, 180, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #edf3f9 0%, #e2ecf5 100%);
}

.zone-section-head {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.zone-section-head h2 {
  margin: 0 0 14px;
  color: #102647;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.zone-section-head p {
  margin: 0 auto;
  max-width: 760px;
  color: #4f627b;
  font-size: 18px;
  line-height: 1.55;
}

/* CARTES ZONES */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.zone-card {
  padding: 26px 22px;
  background: linear-gradient(to bottom, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.zone-card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  font-size: 25px;
  background: linear-gradient(to bottom, #eef7ff, #dcecf8);
  border: 1px solid #c9ddeb;
  border-radius: 12px;
}

.zone-card h3 {
  margin: 0 0 10px;
  color: #102647;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.zone-card p {
  margin: 0;
  color: #334863;
  font-size: 15.5px;
  line-height: 1.55;
}

.zone-card p + p {
  margin-top: 12px;
}

.zone-card-subtitle {
  margin-bottom: 12px !important;
  color: #0f6fad !important;
  font-weight: 800;
}

.zone-note {
  padding: 10px 12px;
  background: #eef7ff;
  border-left: 4px solid #0f6fad;
  border-radius: 8px;
  font-size: 14px !important;
}

/* MAP */
.zone-map-card {
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(13, 28, 55, 0.14);
}

.zone-map-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  color: #ffffff;
  background: linear-gradient(to right, #0d1f3b, #16345c);
  border-bottom: 3px solid #2aa6e8;
}

.zone-map-header-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: rgba(117, 217, 255, 0.15);
  border: 1px solid rgba(117, 217, 255, 0.35);
  border-radius: 12px;
  font-size: 22px;
}

.zone-map-header h3 {
  margin: 0 0 3px;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
}

.zone-map-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.zone-map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(42, 166, 232, 0.18), transparent 24%),
    linear-gradient(135deg, #e9eef5, #dce6f1);
}

.zone-map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONSENTEMENT */
.map-consent-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(8, 22, 44, 0.94), rgba(22, 52, 92, 0.88));
}

.map-consent-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.map-consent-box {
  width: min(100%, 560px);
  padding: 30px 28px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  border-top: 5px solid #2aa6e8;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.map-consent-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  font-size: 25px;
  background: #eef7ff;
  border: 1px solid #c9ddeb;
  border-radius: 50%;
}

.map-consent-box h3 {
  margin: 0 0 12px;
  color: #102647;
  font-size: 24px;
  font-weight: 900;
}

.map-consent-box p {
  margin: 0 0 10px;
  color: #334863;
  font-size: 15px;
  line-height: 1.55;
}

.map-consent-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.consent-btn:hover {
  transform: translateY(-1px);
}

.consent-btn-accept {
  color: #ffffff;
  background: linear-gradient(to bottom, #2b9ad8, #0a6ba8);
  border: 1px solid rgba(10, 107, 168, 0.4);
}

.consent-btn-decline {
  color: #102647;
  background: #ffffff;
  border: 1px solid #dbe3ee;
}

.consent-small {
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid #e6edf5;
  font-size: 13px !important;
  color: #6b7a8c !important;
}

.consent-small a {
  color: #0f6fad;
  text-decoration: underline;
}

/* FALLBACK */
.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  text-align: center;
  background: linear-gradient(135deg, #eef2f7, #dde6f0);
}

.map-fallback.active {
  display: flex;
}

.map-fallback-icon {
  margin-bottom: 10px;
  font-size: 42px;
}

.map-fallback h3 {
  margin: 0 0 8px;
  color: #102647;
  font-size: 22px;
}

.map-fallback p {
  max-width: 460px;
  margin: 0 0 18px;
  color: #334863;
  font-size: 15px;
  line-height: 1.5;
}

.map-fallback-reenable,
.map-reset-btn {
  color: #0f6fad;
  background: none;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}

.zone-map-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 22px;
  background: #ffffff;
  border-top: 1px solid #e6edf5;
}

.zone-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  color: #173154;
  font-size: 14px;
  font-weight: 700;
  background: #f4f8fc;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-main {
  background: #2aa6e8;
  box-shadow: 0 0 0 3px rgba(42, 166, 232, 0.22);
}

.dot-region {
  background: #1d4f8f;
}

.dot-swiss {
  background: #c8102e;
}

.dot-france {
  background: #0055a4;
}

.zone-map-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.zone-btn-outline {
  color: #102647;
  background: transparent;
  border: 2px solid #102647;
}

.zone-btn-outline:hover {
  color: #ffffff;
  background: #102647;
}

.map-reset-wrapper {
  margin-top: 16px;
  text-align: center;
}

/* CTA */
.zone-cta-section {
  background: linear-gradient(to bottom, #f9fbfd 0%, #f4f7fb 100%);
}

.zone-cta-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, #0d1f3b, #16345c);
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(13, 28, 55, 0.18);
}

.zone-cta-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  font-size: 30px;
  background: rgba(117, 217, 255, 0.14);
  border: 1px solid rgba(117, 217, 255, 0.32);
  border-radius: 16px;
}

.zone-cta-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
}

.zone-cta-card p {
  margin: 0 0 20px;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

/* RESPONSIVE ZONE */
@media (max-width: 1100px) {
  .zone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .zone-hero-inner {
    min-height: auto;
    padding: 54px 0;
  }

  .zone-hero-copy h1 {
    font-size: 36px;
  }

  .zone-hero-copy p {
    font-size: 18px;
  }

  .zone-section,
  .zone-map-section,
  .zone-cta-section {
    padding: 42px 0;
  }

  .zone-grid {
    grid-template-columns: 1fr;
  }

  .zone-map-container {
    aspect-ratio: 4 / 3;
  }

  .map-consent-actions,
  .zone-map-actions {
    flex-direction: column;
  }

  .consent-btn,
  .zone-map-actions .btn {
    width: 100%;
  }

  .zone-cta-card {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .zone-cta-card .btn {
    width: 100%;
  }
}

/* =========================================================
   BLOC ITINÉRAIRE STYLE GOOGLE MAPS
   ========================================================= */

.directions-layout {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  min-height: 560px;
  background: #ffffff;
}

.directions-panel {
  position: relative;
  z-index: 5;
  padding: 16px 18px 18px;
  background: #ffffff;
  border-right: 1px solid #dbe3ee;
}

.directions-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.directions-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #101820;
  font-size: 20px;
  cursor: default;
}

.directions-tab.active {
  background: #bfeeff;
  color: #0d1f3b;
}

.directions-form {
  position: relative;
}

.directions-line {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.directions-line::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 28px;
  bottom: -18px;
  width: 2px;
  border-left: 2px dotted #6b7a8c;
  opacity: 0.7;
}

.directions-line:nth-of-type(2)::before {
  display: none;
}

.directions-dot {
  position: relative;
  z-index: 2;
  display: block;
  justify-self: center;
  width: 13px;
  height: 13px;
  background: #ffffff;
}

.start-dot {
  border: 2px solid #0d1f3b;
  border-radius: 50%;
}

.end-dot {
  width: 15px;
  height: 15px;
  border: 2px solid #ff2d2d;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.end-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #ff2d2d;
  border-radius: 50%;
}

.directions-input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  color: #1f2937;
  background: #ffffff;
  border: 1px solid #5f6368;
  border-radius: 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  outline: none;
}

.directions-input:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.18);
}

.directions-input[readonly] {
  background: #ffffff;
  color: #111827;
}

.directions-add {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 18px;
  padding: 0 0 0 2px;
  color: #3c4043;
  background: transparent;
  border: 0;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  cursor: default;
}

.directions-add span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #1a73e8;
  border: 2px solid #202124;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.directions-actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.directions-actions .btn {
  width: 100%;
}

.directions-help {
  margin: 14px 0 0;
  color: #5f6f85;
  font-size: 13px;
  line-height: 1.45;
}

.directions-help.error {
  color: #b42318;
  font-weight: 700;
}

.directions-help.success {
  color: #146c43;
  font-weight: 700;
}

/* La carte à droite du panneau itinéraire */
.directions-layout .zone-map-container {
  min-height: 560px;
  aspect-ratio: auto;
}

/* Responsive */
@media (max-width: 980px) {
  .directions-layout {
    grid-template-columns: 1fr;
  }

  .directions-panel {
    border-right: 0;
    border-bottom: 1px solid #dbe3ee;
  }

  .directions-layout .zone-map-container {
    min-height: 480px;
  }
}

@media (max-width: 520px) {
  .directions-tabs {
    gap: 4px;
  }

  .directions-tab {
    font-size: 17px;
    height: 38px;
  }

  .directions-panel {
    padding: 14px;
  }

  .directions-input {
    font-size: 14px;
  }
}

/* =========================================================
   FIX ALIGNEMENT — PAGE ZONE D'INTERVENTION
   À placer tout en bas de style.css
   ========================================================= */

/* Conteneur plus cohérent pour cette page */
.zone-hero .container,
.zone-section .container,
.zone-map-section .container,
.zone-cta-section .container {
  width: min(calc(100% - 48px), 1120px);
  margin-left: auto;
  margin-right: auto;
}

/* HERO : alignement propre, largeur maîtrisée */
.zone-hero-inner {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 0;
}

.zone-hero-copy {
  width: 100%;
  max-width: 720px;
}

.zone-hero-copy .zone-kicker {
  margin-bottom: 14px;
}

.zone-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.zone-hero-copy p {
  max-width: 660px;
  margin-bottom: 26px;
  font-size: 18px;
  line-height: 1.6;
}

/* Boutons du hero alignés proprement */
.zone-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* SECTIONS : centrage propre des titres */
.zone-section,
.zone-map-section,
.zone-cta-section {
  padding: 58px 0;
}

.zone-section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.zone-section-head .zone-kicker {
  margin-bottom: 10px;
}

.zone-section-head h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.zone-section-head p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.6;
}

/* CARTES : 3 cartes = 3 colonnes, centrées */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

/* Cartes plus régulières */
.zone-card {
  min-height: 270px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}

.zone-card-icon {
  margin-bottom: 16px;
}

.zone-card h3 {
  margin-bottom: 8px;
}

.zone-card-subtitle {
  margin-bottom: 10px !important;
}

.zone-card p {
  font-size: 14.5px;
  line-height: 1.55;
}

/* Note Suisse mieux intégrée */
.zone-note {
  margin-top: auto !important;
}

/* MAP : largeur alignée avec les sections */
.zone-map-card {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

/* Bloc itinéraire : colonne gauche moins large pour mieux équilibrer */
.directions-layout {
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: 520px;
}

.directions-layout .zone-map-container {
  min-height: 520px;
}

/* Header de la carte */
.zone-map-header {
  padding: 18px 22px;
}

/* Légende mieux alignée */
.zone-map-legend {
  justify-content: center;
  padding: 16px 20px;
}

/* CTA bas : aligné avec le reste */
.zone-cta-card {
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: 64px 1fr;
  padding: 30px 32px;
}

.zone-cta-card h2 {
  font-size: 27px;
}

.zone-cta-card p {
  max-width: 760px;
}

/* Responsive tablette */
@media (max-width: 980px) {
  .zone-hero .container,
  .zone-section .container,
  .zone-map-section .container,
  .zone-cta-section .container {
    width: min(calc(100% - 32px), 760px);
  }

  .zone-hero-inner {
    padding: 54px 0;
  }

  .zone-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .zone-card {
    min-height: auto;
  }

  .directions-layout {
    grid-template-columns: 1fr;
  }

  .directions-layout .zone-map-container {
    min-height: 430px;
  }

  .zone-cta-card {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

/* Responsive mobile */
@media (max-width: 600px) {
  .zone-hero .container,
  .zone-section .container,
  .zone-map-section .container,
  .zone-cta-section .container {
    width: min(calc(100% - 24px), 100%);
  }

  .zone-hero-inner {
    padding: 46px 0;
  }

  .zone-hero-copy h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .zone-hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .zone-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .zone-hero .btn {
    width: 100%;
  }

  .zone-section,
  .zone-map-section,
  .zone-cta-section {
    padding: 42px 0;
  }

  .zone-section-head {
    margin-bottom: 28px;
  }

  .zone-section-head h2 {
    font-size: 27px;
  }

  .zone-section-head p {
    font-size: 15px;
  }

  .zone-card {
    padding: 22px 20px;
  }

  .zone-map-header {
    align-items: flex-start;
    padding: 18px;
  }

  .directions-layout .zone-map-container {
    min-height: 380px;
  }

  .zone-map-legend {
    justify-content: flex-start;
  }

  .zone-map-legend span {
    width: 100%;
    justify-content: flex-start;
  }

  .zone-cta-card {
    padding: 24px 20px;
  }
}

/* =========================================================
   SUPPRESSION DU CADRE BLANC AUTOUR DU CTA ZONE
   ========================================================= */

.zone-cta-section {
  padding: 0 0 54px;
  background: transparent;
}

.zone-cta-section .container {
  width: min(calc(100% - 48px), 1040px);
}

.zone-cta-card {
  margin: 0 auto;
}

/* =========================================================
   FIX HEADER MOBILE — ALIGNEMENT MENU + LOGO + BOUTON
   À placer tout en bas de style.css
   ========================================================= */

@media (max-width: 980px) {
  .site-header {
    overflow: hidden;
  }

  .header-inner {
    width: min(calc(100% - 24px), var(--container));
    min-height: auto;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .site-header .header-logo-box {
    width: 100%;
    max-width: 380px;
    min-width: 0;
    padding: 8px 10px;
    gap: 10px;
  }

  .site-header .header-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .site-header .header-logo-text {
    min-width: 0;
    overflow: hidden;
  }

  .site-header .header-logo-text .mvse {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }

  .site-header .header-logo-text .small {
    font-size: 0.68rem;
    letter-spacing: 2px;
  }

  .site-header .header-logo-text .tagline {
    font-size: 0.66rem;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    width: 44px;
    height: 44px;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    padding: 8px 0 0;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px 0;
    align-items: stretch;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 11px 14px;
    text-align: center;
    background: #f3f6fa;
    border-radius: 8px;
    color: #10294c;
    font-size: 16px;
  }

  .nav-link.active::after {
    display: none;
  }

  .call-button,
  .header-phone {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    height: 48px;
    margin-top: 6px;
    font-size: 18px;
  }
}

/* =========================================================
   PAGE CONTACT — M.V.S.E IT
   ========================================================= */

.contact-page-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at top left, rgba(40, 164, 218, 0.10), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: start;
}

.contact-info-card {
  align-self: start;
  height: fit-content;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 41, 76, 0.10);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 22px 60px rgba(16, 41, 76, 0.10);
}

.contact-form-card h1 {
  margin: 18px 0 16px;
  color: #061d3b;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-intro {
  max-width: 760px;
  margin: 0 0 30px;
  color: #23466f;
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: #061d3b;
  font-weight: 800;
  font-size: 0.95rem;
}

.form-group label span,
.consent-box strong {
  color: #d99f13;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(16, 41, 76, 0.16);
  border-radius: 12px;
  background: #f8fbff;
  color: #061d3b;
  font: inherit;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(40, 164, 218, 0.72);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(40, 164, 218, 0.14);
}

.consent-box {
  padding: 16px 18px;
  border: 1px solid rgba(16, 41, 76, 0.14);
  border-radius: 14px;
  background: #f8fbff;
}

.checkbox-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #23466f;
  font-size: 0.88rem;
  line-height: 1.55;
}

.checkbox-line input {
  margin-top: 4px;
  flex: 0 0 auto;
}

.checkbox-line a {
  color: #b48613;
  font-weight: 800;
  text-decoration: underline;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-submit-button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 17px 24px;
  background: linear-gradient(135deg, #efd775, #d8aa20);
  color: #061d3b;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(216, 170, 32, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.form-submit-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 20px 44px rgba(216, 170, 32, 0.34);
}

.contact-info-card {
  background:
    radial-gradient(circle at top right, rgba(40, 164, 218, 0.16), transparent 36%),
    linear-gradient(180deg, #07182c 0%, #041225 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 24px 70px rgba(4, 18, 37, 0.24);
}

.contact-info-card h2 {
  margin: 0 0 20px;
  color: #f0cf55;
  font-size: 1.8rem;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.75;
}

.contact-info-block {
  margin-bottom: 28px;
}

.contact-actions {
  display: grid;
  gap: 14px;
  margin: 26px 0 34px;
}

.contact-reveal-btn,
.contact-hidden-link {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-reveal-btn {
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  cursor: pointer;
}

.contact-reveal-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.contact-hidden-link {
  display: none;
  color: #061d3b;
  background: linear-gradient(135deg, #efd775, #d8aa20);
  text-decoration: none;
}

.contact-hidden-link.is-visible {
  display: inline-flex;
}

.contact-note {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-note h3 {
  margin: 0 0 10px;
  color: #ffffff;
}

/* =========================================================
   RESPONSIVE CONTACT
   ========================================================= */

@media (max-width: 980px) {
  .contact-page-section {
    padding: 42px 0;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 28px;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .contact-page-section {
    padding: 28px 0;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card h1 {
    font-size: 2rem;
  }

  .form-submit-button {
    padding: 15px 18px;
    font-size: 0.82rem;
  }

  .checkbox-line {
    font-size: 0.82rem;
  }
}

    .message-success {
        color: #155724;
        background-color: #d4edda;
        border: 1px solid #c3e6cb;
        padding: 14px 16px;
        margin: 20px 0;
        border-radius: 6px;
        font-size: 16px;
    }

/* =========================================================
   FIX CONTACT MOBILE — AFFICHAGE TÉLÉPHONE / EMAIL
   ========================================================= */

.contact-actions {
  display: grid;
  gap: 14px;
  width: 100%;
}

.contact-hidden-link {
  display: none !important;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  color: #061d3b;
  background: linear-gradient(135deg, #efd775, #d8aa20);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.contact-hidden-link.is-visible {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  min-height: 48px !important;
  overflow: visible !important;
}

@media (max-width: 640px) {
  .contact-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .contact-reveal-btn,
  .contact-hidden-link,
  .contact-hidden-link.is-visible {
    width: 100% !important;
    max-width: 100%;
  }

  .contact-hidden-link.is-visible {
    display: flex !important;
  }
}

/* =========================================================
   HEADER — DISPONIBILITÉ
   ========================================================= */

.header-availability {
  flex: 0 0 auto;
  display: grid;
  gap: 2px;
  padding: 8px 14px;
  color: #10294c;
  text-align: center;
  line-height: 1.15;
  white-space: nowrap;
  border-left: 1px solid #dbe3ee;
  border-right: 1px solid #dbe3ee;
}

.header-availability span,
.header-availability strong {
  display: block;
}

.header-availability .availability-status {
  color: #128047;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-availability span:not(.availability-status) {
  color: #334863;
  font-size: 13px;
  font-weight: 700;
}

.header-availability strong {
  color: #061d3b;
  font-size: 15px;
  font-weight: 950;
}

/* =========================================================
   FOOTER — RÉSEAUX SOCIAUX + CGV
   ========================================================= */

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.social-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1;
}

/* Facebook */
.social-facebook {
  font-size: 34px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

/* LinkedIn */
.social-linkedin {
  width: 31px;
  height: 31px;
  border-radius: 3px;
  border: 3px solid #ffffff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -1px;
}

/* Instagram */
.social-instagram {
  width: 33px;
  height: 33px;
  border: 3px solid #ffffff;
  border-radius: 9px;
}

.social-instagram::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.social-instagram::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
}

/* Responsive header/footer */
@media (max-width: 980px) {
  .header-availability {
    grid-column: 1 / -1;
    width: 100%;
    order: 3;
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    background: #f6f9fc;
    padding: 10px 14px;
  }

  .main-nav {
    order: 4;
  }

  .call-button,
  .header-phone {
    order: 5;
  }
}

@media (max-width: 768px) {
  .footer-socials {
    width: 100%;
    order: 2;
  }

  .footer-links {
    width: 100%;
    order: 3;
  }

  .footer-separator {
    order: 4;
  }

  .footer-copyright {
    order: 5;
  }
}

/* =========================================================
   SERVICES — BLOC NOUS CONSEILLONS
   ========================================================= */

.advice-section {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(46, 169, 232, 0.18), transparent 32%),
    linear-gradient(135deg, #f6fbff 0%, #ffffff 45%, #eef7ff 100%);
  overflow: hidden;
}

.advice-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 46px;
  padding: 54px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 247, 255, 0.92));
  border: 1px solid rgba(28, 143, 212, 0.18);
  box-shadow:
    0 24px 60px rgba(15, 45, 80, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.advice-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(25, 156, 223, 0.12);
}

.advice-card::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(0, 44, 92, 0.08);
}

.advice-content {
  position: relative;
  z-index: 2;
}

.advice-kicker {
  display: inline-block;
  margin-bottom: 4px;
  color: #1397d5;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.advice-content h2 {
  margin: 0 0 22px;
  color: #08264a;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.advice-question {
  margin-bottom: 16px;
  color: #08264a;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 850;
  line-height: 1.35;
}

.advice-content p:not(.advice-question) {
  max-width: 650px;
  margin-bottom: 28px;
  color: #334863;
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Illustration */
.advice-visual {
  position: relative;
  z-index: 2;
  min-height: 320px;
}

.device {
  position: absolute;
  filter: drop-shadow(0 18px 22px rgba(10, 38, 70, 0.22));
}

/* Laptop */
.laptop {
  left: 4%;
  bottom: 32px;
  width: 250px;
  height: 170px;
}

.laptop-screen {
  width: 220px;
  height: 135px;
  margin: 0 auto;
  border-radius: 14px 14px 6px 6px;
  background:
    linear-gradient(135deg, rgba(38, 160, 222, 0.95), rgba(8, 38, 74, 0.95)),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 18px,
      rgba(255, 255, 255, 0.18) 19px
    );
  border: 8px solid #0c2f58;
  box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.12);
}

.laptop-base {
  width: 250px;
  height: 24px;
  margin-top: 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(to bottom, #cbd7e4, #8ca1b8);
}

/* Tablette */
.tablet {
  right: 18%;
  top: 18px;
  width: 132px;
  height: 190px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #0d345f, #1aa3e0);
  border: 8px solid #102b4d;
}

.tablet::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 24px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.tablet::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

/* Imprimante */
.printer {
  right: 2%;
  bottom: 28px;
  width: 230px;
  height: 150px;
}

.printer-top {
  position: absolute;
  left: 35px;
  top: 0;
  width: 160px;
  height: 58px;
  border-radius: 8px 8px 0 0;
  background: #dce8f3;
  border: 4px solid #9fb4c8;
}

.printer-body {
  position: absolute;
  left: 0;
  top: 44px;
  width: 230px;
  height: 82px;
  border-radius: 18px;
  background: linear-gradient(to bottom, #1ba7e5, #0878ba);
  border: 4px solid #0b6094;
}

.printer-body::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 18px;
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: #dff6ff;
}

.printer-paper {
  position: absolute;
  left: 42px;
  bottom: 0;
  width: 146px;
  height: 54px;
  border-radius: 0 0 8px 8px;
  background:
    repeating-linear-gradient(
      to bottom,
      #ffffff 0,
      #ffffff 9px,
      #d9e8f5 10px
    );
  border: 3px solid #bfd2e3;
}

/* Responsive */
@media (max-width: 900px) {
  .advice-card {
    grid-template-columns: 1fr;
    padding: 38px 28px;
  }

  .advice-visual {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .advice-section {
    padding: 54px 0;
  }

  .advice-card {
    padding: 32px 22px;
    border-radius: 20px;
  }

  .advice-content h2 {
    font-size: 2.5rem;
  }

  .advice-question {
    font-size: 1.18rem;
  }

  .advice-content p:not(.advice-question) {
    font-size: 1rem;
  }

  .advice-visual {
    min-height: 260px;
    transform: scale(0.86);
    transform-origin: center top;
  }

  .laptop {
    left: -4%;
  }

  .tablet {
    right: 8%;
  }

  .printer {
    right: -8%;
  }
}

/* =========================================================
   HERO — ILLUSTRATION CSS PROFESSIONNELLE RESPONSIVE
   Style serveur / cloud / laptop / sécurité
   ========================================================= */

.hero-css-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.pro-tech-scene {
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 1.55 / 1;
  isolation: isolate;
}

/* halo global */
.pro-tech-scene::before {
  content: "";
  position: absolute;
  inset: 8% 2% 4% 2%;
  background:
    radial-gradient(circle at 52% 58%, rgba(87, 190, 255, 0.22), transparent 28%),
    radial-gradient(circle at 76% 46%, rgba(120, 210, 255, 0.13), transparent 24%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04), transparent);
  filter: blur(2px);
  border-radius: 40px;
  z-index: -2;
}

/* reflet au sol */
.pro-tech-scene::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 5%;
  bottom: 3%;
  height: 18%;
  background:
    radial-gradient(ellipse at 24% 50%, rgba(67, 164, 255, 0.20), transparent 40%),
    radial-gradient(ellipse at 58% 50%, rgba(255, 255, 255, 0.16), transparent 32%),
    radial-gradient(ellipse at 84% 50%, rgba(120, 210, 255, 0.18), transparent 36%);
  filter: blur(8px);
  opacity: 0.9;
  z-index: -1;
}

/* =========================
   LIGNES RÉSEAU
   ========================= */

.pro-network {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pro-line {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(
    to right,
    rgba(125, 218, 255, 0),
    rgba(125, 218, 255, 0.85),
    rgba(125, 218, 255, 0.18)
  );
  box-shadow: 0 0 12px rgba(96, 205, 255, 0.55);
}

.pro-line-1 {
  left: 16%;
  top: 38%;
  width: 38%;
}

.pro-line-2 {
  left: 24%;
  top: 61%;
  width: 44%;
  transform: rotate(-11deg);
}

.pro-line-3 {
  left: 58%;
  top: 50%;
  width: 26%;
}

.pro-line-4 {
  left: 62%;
  top: 62%;
  width: 22%;
  transform: rotate(-18deg);
}

.pro-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #b9efff;
  box-shadow:
    0 0 0 4px rgba(117, 217, 255, 0.13),
    0 0 16px rgba(117, 217, 255, 0.95);
}

.pro-node-1 { left: 54%; top: 37%; }
.pro-node-2 { left: 35%; top: 60%; }
.pro-node-3 { left: 67%; top: 49%; }
.pro-node-4 { left: 83%; top: 49%; }
.pro-node-5 { left: 71%; top: 28%; }

/* =========================
   SERVEUR
   ========================= */

.pro-server {
  position: absolute;
  left: 2%;
  bottom: 16%;
  width: 20%;
  height: 72%;
  z-index: 3;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.36));
  transform: perspective(760px) rotateY(9deg);
}

.pro-server-side {
  position: absolute;
  left: 0;
  top: 5%;
  width: 31%;
  height: 92%;
  background: linear-gradient(90deg, #070d19, #162944 70%, #07111f);
  border: 1px solid rgba(150, 190, 230, 0.18);
  transform: skewY(-6deg);
  border-radius: 4px 0 0 5px;
}

.pro-server-front {
  position: absolute;
  right: 0;
  top: 0;
  width: 76%;
  height: 100%;
  padding: 8% 8%;
  display: grid;
  gap: 5%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #142642 0%, #081221 100%);
  border: 1px solid rgba(170, 210, 255, 0.24);
  border-radius: 4px;
  box-shadow:
    inset 10px 0 18px rgba(255, 255, 255, 0.04),
    inset -8px 0 18px rgba(0, 0, 0, 0.34);
}

.pro-server-front span {
  position: relative;
  border-radius: 3px;
  background:
    linear-gradient(180deg, #1d3456, #0c182a);
  border: 1px solid rgba(120, 180, 230, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pro-server-front span::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 38%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background:
    repeating-linear-gradient(
      to right,
      rgba(101, 210, 255, 0.85) 0 3px,
      transparent 3px 7px
    );
  opacity: 0.75;
}

.pro-server-front span::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  width: 8%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 2px;
  background: #80d8ff;
  box-shadow:
    -14px 0 0 rgba(128, 216, 255, 0.65),
    0 0 10px rgba(128, 216, 255, 0.8);
}

/* =========================
   CLOUD
   ========================= */

.pro-cloud {
  position: absolute;
  left: 35%;
  top: 26%;
  width: 22%;
  height: 20%;
  z-index: 4;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.18));
}

.cloud-bubble,
.cloud-base-pro {
  position: absolute;
  background:
    linear-gradient(180deg, #ffffff 0%, #d8e8f8 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.cloud-bubble-1 {
  left: 3%;
  bottom: 22%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.cloud-bubble-2 {
  left: 26%;
  bottom: 32%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.cloud-bubble-3 {
  right: 8%;
  bottom: 22%;
  width: 35%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.cloud-base-pro {
  left: 6%;
  right: 4%;
  bottom: 12%;
  height: 42%;
  border-radius: 999px;
}

/* =========================
   LAPTOP
   ========================= */

.pro-laptop {
  position: absolute;
  left: 38%;
  bottom: 12%;
  width: 35%;
  height: 35%;
  z-index: 5;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.28));
  transform: perspective(700px) rotateX(3deg) rotateZ(1deg);
}

.pro-laptop-screen {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 67%;
  overflow: hidden;
  border: 5px solid #061224;
  border-radius: 10px 10px 4px 4px;
  background:
    radial-gradient(circle at 55% 50%, rgba(108, 218, 255, 0.38), transparent 20%),
    linear-gradient(135deg, #07162a 0%, #0c3564 100%);
  box-shadow:
    inset 0 0 26px rgba(95, 205, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pro-laptop-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(60deg, transparent 0 46%, rgba(255, 255, 255, 0.10) 47%, transparent 62%),
    repeating-linear-gradient(
      90deg,
      rgba(106, 211, 255, 0.20) 0 1px,
      transparent 1px 13px
    );
  opacity: 0.65;
}

.screen-line {
  position: absolute;
  right: 12%;
  height: 2px;
  border-radius: 999px;
  background: rgba(126, 221, 255, 0.86);
  box-shadow: 0 0 8px rgba(126, 221, 255, 0.7);
}

.screen-line-1 {
  top: 26%;
  width: 38%;
}

.screen-line-2 {
  top: 43%;
  width: 48%;
}

.screen-line-3 {
  top: 60%;
  width: 34%;
}

.screen-chip {
  position: absolute;
  left: 20%;
  top: 32%;
  width: 22%;
  aspect-ratio: 1;
  border: 2px solid rgba(126, 221, 255, 0.75);
  border-radius: 4px;
  box-shadow:
    0 0 10px rgba(126, 221, 255, 0.36),
    inset 0 0 10px rgba(126, 221, 255, 0.16);
}

.screen-chip::before,
.screen-chip::after {
  content: "";
  position: absolute;
  left: -28%;
  right: -28%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background:
    linear-gradient(
      to right,
      rgba(126, 221, 255, 0.7),
      transparent 20%,
      transparent 80%,
      rgba(126, 221, 255, 0.7)
    );
}

.pro-laptop-keyboard {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 64%;
  height: 22%;
  background: linear-gradient(180deg, #d9e5f2 0%, #8194ac 100%);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  border-radius: 4px;
}

.pro-laptop-keyboard::before {
  content: "";
  position: absolute;
  left: 23%;
  right: 23%;
  top: 24%;
  height: 30%;
  border-radius: 4px;
  background:
    repeating-linear-gradient(
      to right,
      rgba(17, 34, 55, 0.45) 0 6px,
      transparent 6px 10px
    );
  opacity: 0.7;
}

.pro-laptop-base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 11%;
  background: linear-gradient(180deg, #aab7c8, #60758d);
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
  border-radius: 0 0 12px 12px;
}

/* =========================
   BOUCLIER
   ========================= */

.pro-shield {
  position: absolute;
  right: 2%;
  bottom: 13%;
  width: 24%;
  height: 45%;
  z-index: 6;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.32));
}

.pro-shield::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 92% 13%, 87% 68%, 50% 100%, 13% 68%, 8% 13%);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(168, 205, 235, 0.76) 24%, rgba(10, 27, 50, 0.95) 58%, rgba(7, 18, 34, 1) 100%);
  box-shadow:
    inset 0 0 0 4px rgba(230, 243, 255, 0.82),
    inset 0 0 18px rgba(255, 255, 255, 0.2);
}

.pro-shield-inner {
  position: absolute;
  inset: 9%;
  clip-path: polygon(50% 0%, 90% 14%, 84% 65%, 50% 95%, 16% 65%, 10% 14%);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18) 0 48%, transparent 48%),
    linear-gradient(180deg, #142c50 0%, #061429 100%);
}

.pro-lock {
  position: absolute;
  left: 50%;
  top: 39%;
  width: 34%;
  height: 36%;
  transform: translate(-50%, -50%);
}

.pro-lock-top {
  position: absolute;
  left: 50%;
  top: 0;
  width: 62%;
  height: 55%;
  transform: translateX(-50%);
  border: 5px solid #f4f8fc;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.pro-lock-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  border-radius: 7px;
  background: linear-gradient(180deg, #ffffff, #b7c9db);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.22);
}

.pro-lock-body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 31%;
  width: 18%;
  height: 26%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071428;
}

.pro-lock-body::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11%;
  height: 30%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071428;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1200px) {
  .hero-css-visual {
    min-height: 460px;
  }

  .pro-tech-scene {
    width: min(100%, 640px);
  }
}

@media (max-width: 768px) {
  .hero-css-visual {
    min-height: 330px;
    padding-top: 18px;
  }

  .pro-tech-scene {
    width: min(100%, 520px);
    aspect-ratio: 1.45 / 1;
  }

  .pro-server {
    left: 1%;
    bottom: 17%;
    width: 21%;
    height: 68%;
  }

  .pro-cloud {
    left: 32%;
    top: 23%;
    width: 25%;
  }

  .pro-laptop {
    left: 32%;
    bottom: 11%;
    width: 39%;
    height: 37%;
  }

  .pro-shield {
    right: 0;
    bottom: 12%;
    width: 26%;
    height: 45%;
  }

  .pro-line-1 {
    left: 16%;
    width: 34%;
  }

  .pro-line-2 {
    left: 24%;
    width: 38%;
  }

  .pro-line-3 {
    left: 55%;
    width: 25%;
  }
}

@media (max-width: 520px) {
  .hero-css-visual {
    min-height: 250px;
    padding-top: 8px;
  }

  .pro-tech-scene {
    width: 100%;
    aspect-ratio: 1.32 / 1;
    transform: scale(1.02);
  }

  .pro-server {
    left: -2%;
    bottom: 18%;
    width: 22%;
    height: 65%;
  }

  .pro-cloud {
    left: 29%;
    top: 20%;
    width: 26%;
  }

  .pro-laptop {
    left: 30%;
    bottom: 11%;
    width: 41%;
    height: 35%;
  }

  .pro-shield {
    right: -3%;
    bottom: 12%;
    width: 29%;
    height: 43%;
  }

  .pro-node {
    width: 7px;
    height: 7px;
  }

  .pro-line {
    height: 1.5px;
  }
}

/* =========================================================
   HERO — REMPLACEMENT IMAGE CSS PAR VISUEL COMPACT PRO
   À placer tout en bas de style.css
   ========================================================= */

/* Empêche les débordements horizontaux */
html,
body {
  overflow-x: hidden;
}

/* Zone visuelle du hero */
.hero-visual-new {
  position: relative !important;
  min-height: 360px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

/* Sécurité : cache l’ancienne illustration si elle reste dans le HTML */
.hero-visual-new .hero-tech-art,
.hero-visual-new .server-cluster,
.hero-visual-new .shield,
.hero-visual-new .cloud,
.hero-visual-new .network-lines {
  display: none !important;
}

/* Carte visuelle bleu foncé */
.hero-card-visual {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1.9 / 1;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 54%, rgba(71, 178, 246, 0.20), transparent 30%),
    radial-gradient(circle at 100% 8%, rgba(110, 218, 255, 0.10), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 45px rgba(0, 0, 0, 0.16);
  isolation: isolate;
}

/* Lueur douce derrière laptop */
.hero-card-visual::before {
  content: "";
  position: absolute;
  left: 36%;
  right: 13%;
  bottom: 12%;
  height: 36%;
  background: radial-gradient(ellipse at center, rgba(67, 178, 255, 0.24), transparent 64%);
  filter: blur(10px);
  z-index: 0;
}

/* Reflet sol */
.hero-card-visual::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 6%;
  height: 10%;
  background:
    radial-gradient(ellipse at 46% 50%, rgba(110, 218, 255, 0.18), transparent 40%),
    radial-gradient(ellipse at 78% 50%, rgba(255, 255, 255, 0.12), transparent 34%);
  filter: blur(8px);
  z-index: 0;
}

/* =========================
   Réseau
   ========================= */

.new-network {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.new-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(122, 221, 255, 0),
    rgba(122, 221, 255, 0.72),
    rgba(122, 221, 255, 0.08)
  );
  box-shadow: 0 0 10px rgba(122, 221, 255, 0.42);
}

.new-line-1 {
  left: 18%;
  top: 33%;
  width: 36%;
}

.new-line-2 {
  left: 33%;
  top: 59%;
  width: 32%;
  transform: rotate(-10deg);
}

.new-line-3 {
  left: 60%;
  top: 48%;
  width: 24%;
}

.new-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aeeeff;
  box-shadow:
    0 0 0 4px rgba(117, 217, 255, 0.10),
    0 0 14px rgba(117, 217, 255, 0.88);
}

.new-dot-1 {
  left: 34%;
  top: 57%;
}

.new-dot-2 {
  left: 61%;
  top: 47%;
}

.new-dot-3 {
  right: 20%;
  top: 18%;
}

/* =========================
   Serveur gauche
   ========================= */

.new-server {
  position: absolute;
  left: 5%;
  top: 13%;
  width: 16%;
  height: 68%;
  padding: 4% 3%;
  display: grid;
  gap: 6%;
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #173052 0%, #071221 100%);
  border: 1px solid rgba(140, 200, 245, 0.22);
  box-shadow:
    0 18px 26px rgba(0, 0, 0, 0.30),
    inset 0 0 20px rgba(110, 218, 255, 0.05);
  z-index: 3;
}

.new-server::before {
  content: "";
  position: absolute;
  left: -18%;
  top: 6%;
  width: 18%;
  height: 88%;
  background: linear-gradient(180deg, #0b1729, #050b14);
  border: 1px solid rgba(140, 200, 245, 0.12);
  border-radius: 4px 0 0 4px;
  transform: skewY(-5deg);
}

.new-server span {
  position: relative;
  border-radius: 3px;
  background: linear-gradient(180deg, #1d3a61, #0b182b);
  border: 1px solid rgba(140, 200, 245, 0.20);
}

.new-server span::before {
  content: "";
  position: absolute;
  left: 12%;
  top: 50%;
  width: 42%;
  height: 2px;
  transform: translateY(-50%);
  background:
    repeating-linear-gradient(
      to right,
      rgba(123, 224, 255, 0.95) 0 3px,
      transparent 3px 7px
    );
}

.new-server span::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 50%;
  width: 7%;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 2px;
  background: #8ee8ff;
  box-shadow:
    -10px 0 0 rgba(142, 232, 255, 0.65),
    0 0 8px rgba(142, 232, 255, 0.85);
}

/* =========================
   Cloud
   ========================= */

.new-cloud {
  position: absolute;
  left: 34%;
  top: 20%;
  width: 22%;
  height: 25%;
  z-index: 4;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.18));
}

.new-cloud-bubble,
.new-cloud-base {
  position: absolute;
  background: linear-gradient(180deg, #ffffff 0%, #d8e8f8 100%);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.new-cloud-1 {
  left: 4%;
  bottom: 22%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.new-cloud-2 {
  left: 28%;
  bottom: 34%;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.new-cloud-3 {
  right: 6%;
  bottom: 20%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.new-cloud-base {
  left: 6%;
  right: 3%;
  bottom: 12%;
  height: 42%;
  border-radius: 999px;
}

/* =========================
   Laptop
   ========================= */

.new-laptop {
  position: absolute;
  left: 39%;
  bottom: 15%;
  width: 32%;
  height: 42%;
  z-index: 5;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.28));
}

.new-laptop-screen {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 66%;
  overflow: hidden;
  border: 4px solid #061224;
  border-radius: 6px 6px 2px 2px;
  background:
    radial-gradient(circle at 54% 54%, rgba(104, 218, 255, 0.35), transparent 24%),
    linear-gradient(135deg, #07172b 0%, #0c3564 100%);
  box-shadow:
    inset 0 0 22px rgba(95, 205, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.new-laptop-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(106, 211, 255, 0.18) 0 1px,
      transparent 1px 14px
    );
  opacity: 0.65;
}

.new-screen-box {
  position: absolute;
  left: 20%;
  top: 35%;
  width: 18%;
  height: 30%;
  border: 2px solid rgba(126, 221, 255, 0.72);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(126, 221, 255, 0.32);
}

.new-screen-line {
  position: absolute;
  right: 12%;
  height: 2px;
  background: rgba(126, 221, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(126, 221, 255, 0.56);
}

.line-a {
  top: 28%;
  width: 40%;
}

.line-b {
  top: 45%;
  width: 48%;
}

.line-c {
  top: 62%;
  width: 34%;
}

.new-laptop-keyboard {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 64%;
  height: 23%;
  background: linear-gradient(180deg, #d9e5f2 0%, #8194ac 100%);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  border-radius: 4px;
}

.new-laptop-keyboard::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 26%;
  height: 30%;
  border-radius: 4px;
  background:
    repeating-linear-gradient(
      to right,
      rgba(17, 34, 55, 0.45) 0 5px,
      transparent 5px 9px
    );
  opacity: 0.7;
}

.new-laptop-base {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 11%;
  background: linear-gradient(180deg, #aab7c8, #60758d);
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
  border-radius: 0 0 10px 10px;
}

/* =========================
   Bouclier
   ========================= */

.new-shield {
  position: absolute;
  right: 7%;
  bottom: 12%;
  width: 22%;
  height: 54%;
  z-index: 6;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.30));
}

.new-shield::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 92% 13%, 87% 68%, 50% 100%, 13% 68%, 8% 13%);
  background:
    linear-gradient(135deg, rgba(240, 248, 255, 0.98), rgba(128, 168, 202, 0.76) 24%, rgba(8, 25, 48, 0.96) 62%, rgba(4, 13, 28, 1) 100%);
  box-shadow:
    inset 0 0 0 4px rgba(230, 243, 255, 0.78),
    inset 0 0 18px rgba(255, 255, 255, 0.2);
}

.new-shield-inner {
  position: absolute;
  inset: 10%;
  clip-path: polygon(50% 0%, 90% 14%, 84% 65%, 50% 95%, 16% 65%, 10% 14%);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.18) 0 48%, transparent 48%),
    linear-gradient(180deg, #142c50 0%, #061429 100%);
}

.new-lock {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 36%;
  height: 36%;
  transform: translate(-50%, -50%);
}

.new-lock-top {
  position: absolute;
  left: 50%;
  top: 0;
  width: 62%;
  height: 55%;
  transform: translateX(-50%);
  border: 4px solid #f4f8fc;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.new-lock-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff, #b7c9db);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.22);
}

.new-lock-body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 31%;
  width: 18%;
  height: 26%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071428;
}

.new-lock-body::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11%;
  height: 30%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071428;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1200px) {
  .hero-visual-new {
    min-height: 310px !important;
  }

  .hero-card-visual {
    width: min(100%, 560px);
  }
}

@media (max-width: 980px) {
  .hero .hero-inner {
    grid-template-columns: 1fr !important;
  }

  .hero-visual-new {
    min-height: 270px !important;
  }

  .hero-card-visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-visual-new {
    min-height: 205px !important;
  }

  .hero-card-visual {
    width: 100%;
    max-width: 390px;
    aspect-ratio: 1.75 / 1;
    border-radius: 16px;
  }

  .new-server {
    left: 4%;
    width: 17%;
    height: 66%;
  }

  .new-cloud {
    left: 32%;
    top: 19%;
    width: 24%;
  }

  .new-laptop {
    left: 37%;
    width: 33%;
  }

  .new-shield {
    right: 5%;
    width: 20%;
  }
}

/* =========================================================
   HEADER MOBILE — même disposition que la page Services
   ========================================================= */

@media (max-width: 768px) {
  .site-header,
  header {
    padding: 6px 12px !important;
  }

  .nav-shell,
  .navbar,
  .header-inner,
  .nav-container {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "brand burger"
      "call call"
      "hours hours" !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .brand,
  .logo,
  .site-logo,
  .header-logo {
    grid-area: brand !important;
    justify-self: start !important;
  }

  .mobile-toggle,
  .menu-toggle,
  .hamburger,
  .burger,
  .nav-toggle {
    grid-area: burger !important;
    justify-self: end !important;
    align-self: center !important;
    margin: 0 !important;
  }

  .header-actions,
  .call-box,
  .call-action,
  .phone-box,
  .cta-phone,
  .btn-call {
    grid-area: call !important;
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
  }

  .header-actions .btn-call,
  .call-box .btn-call,
  .call-action .btn-call,
  .phone-box .btn-call,
  .cta-phone,
  a[href^="tel"] {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .opening-hours,
  .hours,
  .schedule,
  .header-hours {
    grid-area: hours !important;
    width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
    text-align: center !important;
  }

  .desktop-nav,
  .main-nav,
  .nav-menu {
    grid-column: 1 / -1 !important;
  }
}

/* =========================================================
   BULLE FLOTTANTE SUPPORT CLIENT — Style Groupama
   ========================================================= */

.floating-support-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;

  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 22px 13px 14px;

  background: linear-gradient(135deg, #0d2143 0%, #16335b 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);

  box-shadow:
    0 8px 26px rgba(10, 25, 55, 0.32),
    0 2px 8px  rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  transition:
    transform   0.25s ease,
    box-shadow  0.25s ease,
    background  0.25s ease;

  animation: support-float 3.5s ease-in-out infinite;
}

.floating-support-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #152e58 0%, #1f3d72 100%);
  box-shadow:
    0 14px 34px rgba(10, 25, 55, 0.40),
    0 4px 12px  rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: none;
}

@keyframes support-float {
  0%, 100% {
    box-shadow:
      0 8px 26px rgba(10, 25, 55, 0.32),
      0 2px 8px  rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow:
      0 10px 30px rgba(42, 166, 232, 0.26),
      0 2px 8px  rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
}

/* Cercle icône */
.floating-support-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  font-size: 21px;
  background: rgba(42, 166, 232, 0.20);
  border: 1px solid rgba(117, 217, 255, 0.35);
  border-radius: 50%;
  transition: background 0.25s ease;
}

.floating-support-btn:hover .floating-support-icon {
  background: rgba(42, 166, 232, 0.32);
}

/* Textes */
.floating-support-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.floating-support-text strong {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.floating-support-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  margin-top: 3px;
}

/* Point vert "en ligne" */
.floating-support-btn::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 13px;
  height: 13px;
  background: #22c55e;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: support-ping 2.2s ease-in-out infinite;
}

@keyframes support-ping {
  0%, 100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.50); }
  60%       { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0);    }
}

/* Mobile */
@media (max-width: 640px) {
  .floating-support-btn {
    bottom: 16px;
    right: 16px;
    padding: 11px 18px 11px 12px;
    gap: 10px;
  }

  .floating-support-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    font-size: 18px;
  }

  .floating-support-text span {
    display: none; /* on masque le sous-titre sur très petits écrans */
  }

  .floating-support-text strong {
    font-size: 14px;
  }
}

/* =========================================================
   NAVIGATION — DROPDOWN "À PROPOS"
   ========================================================= */

.nav-item-dropdown {
  position: relative;
}

/* Bouton trigger : même look que nav-link */
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #10294c;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-trigger:hover {
  color: #0f6fad;
}

.nav-chevron {
  font-size: 22px;
  line-height: 1;
  opacity: 0.9;
  margin-left: 4px;
  transition: transform 0.22s ease;
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

/* Panneau dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  box-shadow:
    0 14px 32px rgba(13, 28, 55, 0.14),
    0 2px 6px  rgba(13, 28, 55, 0.06);
  z-index: 200;

  /* Fermé */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity    0.22s ease,
    transform  0.22s ease,
    visibility 0.22s;
}

/* Flèche vers le haut */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid #dbe3ee;
  border-top:  1px solid #dbe3ee;
  border-radius: 2px 0 0 0;
}

/* Ouvert */
.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Liens */
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 9px;
  color: #173154;
  text-decoration: none;
  transition: background 0.15s ease;
}

.nav-dropdown-link:hover {
  background: #f0f7ff;
}

.nav-dropdown-link:first-child {
  border-bottom: 1px solid #eef3f9;
  border-radius: 9px 9px 0 0;
  margin-bottom: 2px;
}

.nav-dropdown-link:last-child {
  border-radius: 0 0 9px 9px;
}

.nav-dropdown-icon {
  font-size: 20px;
  flex: 0 0 auto;
  line-height: 1;
}

.nav-dropdown-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0c2444;
  line-height: 1.2;
}

.nav-dropdown-text span {
  display: block;
  font-size: 12.5px;
  color: #5f7a96;
  margin-top: 3px;
  font-weight: 400;
}

/* Mobile */
@media (max-width: 980px) {
  .nav-item-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: center;
    padding: 11px 14px;
    background: #f3f6fa;
    border-radius: 8px;
    color: #10294c;
  }

  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 10px;
    margin-top: 6px;
    display: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown.open {
    display: block;
  }
}

.form-group-full {
  grid-column: 1 / -1;
}

.header-availability {
  width: 100%;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid #e6edf5;
  text-align: center;
}

/* Fond autour du bloc en blanc */
.t-cta-section {
  background: #ffffff !important;
  padding: 52px 0 !important;
}

/* Le bloc reste bleu */
.t-cta-box {
  background: linear-gradient(135deg, #0d1f3b, #16345c) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 18px 38px rgba(13, 28, 55, 0.18) !important;
}

.t-cta-box h2 {
  color: #ffffff !important;
}

.t-cta-box > div:first-child > p {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Bandeau du bas + footer pleine largeur */
.bottom-band,
.site-footer.new-style {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

/* Le bandeau doit rester bien visible sur toute la largeur */
.bottom-band {
  display: block;
}

/* Le footer garde son fond pleine largeur */
.site-footer.new-style {
  padding-left: 0;
  padding-right: 0;
}

.services-hero {
  position: relative;
  padding: var(--space-xl) 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(5, 18, 36, 0.95) 0%, rgba(5, 18, 36, 0.75) 100%),
    url("services.png") center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}



.services-hero .hero-visual {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: rgba(5, 18, 36, 0.98);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  padding: 16px 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.cookie-banner-content {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
}

.cookie-banner-content a {
  color: #7ec8ff;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  cursor: pointer;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.cookie-banner .btn-primary {
  background: #1f8bd6;
  color: #fff;
}

.cookie-banner .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}

.legal-contact-block {
  margin-top: 18px;
}

.legal-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  max-width: 340px;
}

.contact-reveal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #dbe4ef;
  background: #ffffff;
  color: #0f6fad;
  font-weight: 700;
  cursor: pointer;
}

.contact-reveal-btn:hover {
  background: #f4f8fc;
}

.contact-hidden-link {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #efd775, #d8aa20);
  color: #061d3b;
  font-weight: 700;
  text-decoration: none;
}

.contact-hidden-link.is-visible {
  display: inline-flex;
}

/* =========================================================
   PAGE ASSISTANCE — M.V.S.E IT
   ========================================================= */

.assistance-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 28%, rgba(129, 210, 255, 0.18), transparent 18%),
    radial-gradient(circle at 85% 45%, rgba(86, 195, 255, 0.14), transparent 15%),
    linear-gradient(to right, #0d1f3b 0%, #112849 42%, #16345c 100%);
  box-shadow: var(--shadow-hero);
}

.assistance-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8, 16, 31, 0.50), rgba(7, 17, 33, 0.16)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 86px
    );
  pointer-events: none;
}

.assistance-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 38px;
  align-items: center;
  padding: 70px 0;
}

.assistance-kicker {
  margin: 0 0 14px;
  color: #80d0ff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.assistance-hero-copy h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.assistance-hero-copy p {
  margin: 0 0 28px;
  max-width: 760px;
  color: rgba(242, 246, 251, 0.94);
  font-size: 20px;
  line-height: 1.55;
}

.assistance-visual {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card-visual {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1.45 / 1;
  border-radius: 26px;
  background:
    radial-gradient(circle at 60% 48%, rgba(95, 205, 255, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 26px 45px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.support-card-visual::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 9%;
  height: 12%;
  background: radial-gradient(ellipse at center, rgba(117, 217, 255, 0.24), transparent 64%);
  filter: blur(8px);
}

.support-screen {
  position: absolute;
  left: 10%;
  top: 18%;
  width: 56%;
  height: 58%;
  border-radius: 18px;
  background:
    radial-gradient(circle at 45% 55%, rgba(42, 166, 232, 0.28), transparent 26%),
    linear-gradient(135deg, #f7fbff, #dcecf8);
  border: 8px solid #08162c;
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.28);
}

.support-screen::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -28px;
  height: 18px;
  background: linear-gradient(to bottom, #d9e5f2, #8194ac);
  border-radius: 0 0 12px 12px;
}

.support-screen-bar {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 12%;
  height: 10px;
  border-radius: 999px;
  background: #0f6fad;
  opacity: 0.85;
}

.support-line {
  position: absolute;
  left: 10%;
  height: 8px;
  border-radius: 999px;
  background: #a8bfd4;
}

.support-line-1 {
  top: 36%;
  width: 58%;
}

.support-line-2 {
  top: 50%;
  width: 70%;
}

.support-line-3 {
  top: 64%;
  width: 46%;
}

.support-check {
  position: absolute;
  right: 12%;
  bottom: 16%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(to bottom, #2aa6e8, #0b6da8);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(10, 107, 168, 0.28);
}

.support-shield {
  position: absolute;
  right: 9%;
  top: 22%;
  width: 26%;
  height: 52%;
  clip-path: polygon(50% 0%, 92% 13%, 87% 68%, 50% 100%, 13% 68%, 8% 13%);
  background:
    linear-gradient(135deg, rgba(240, 248, 255, 0.98), rgba(128, 168, 202, 0.76) 24%, rgba(8, 25, 48, 0.96) 62%, rgba(4, 13, 28, 1) 100%);
  box-shadow:
    inset 0 0 0 4px rgba(230, 243, 255, 0.78),
    0 18px 26px rgba(0, 0, 0, 0.28);
}

.support-lock-top {
  position: absolute;
  left: 50%;
  top: 28%;
  width: 36%;
  height: 28%;
  transform: translateX(-50%);
  border: 5px solid #ffffff;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.support-lock-body {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 42%;
  height: 28%;
  transform: translateX(-50%);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #b7c9db);
}

.support-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  border-radius: 50%;
  background: rgba(42, 166, 232, 0.22);
  border: 1px solid rgba(117, 217, 255, 0.35);
  box-shadow: 0 0 18px rgba(117, 217, 255, 0.28);
}

.support-bubble-1 {
  left: 9%;
  top: 9%;
}

.support-bubble-2 {
  right: 12%;
  bottom: 12%;
}

/* Sections */

.assistance-section,
.assistance-security-section,
.assistance-cta-section {
  padding: 58px 0;
  background: linear-gradient(to bottom, #f9fbfd 0%, #f4f7fb 100%);
}

.assistance-security-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(120, 180, 255, 0.16), transparent 28%),
    radial-gradient(circle at 90% 100%, rgba(120, 180, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #edf3f9 0%, #e2ecf5 100%);
}

.assistance-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.assistance-step-card {
  padding: 26px 22px;
  background: linear-gradient(to bottom, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.assistance-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 34px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(to bottom, #2aa6e8, #0b6da8);
  border-radius: 999px;
}

.assistance-step-card h3 {
  margin: 0 0 10px;
  color: #102647;
  font-size: 21px;
  line-height: 1.25;
}

.assistance-step-card p {
  margin: 0;
  color: #334863;
  font-size: 15px;
  line-height: 1.55;
}

.assistance-security-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 28px;
  align-items: start;
}

.assistance-security-content,
.assistance-tool-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.assistance-security-content {
  padding: 34px;
}

.assistance-security-content h2 {
  margin: 0 0 22px;
  color: #102647;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.assistance-security-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assistance-security-list li {
  position: relative;
  padding-left: 28px;
  color: #2b4162;
  font-size: 16px;
  line-height: 1.55;
}

.assistance-security-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f63c5;
  font-weight: 900;
}

.assistance-tool-card {
  padding: 30px;
}

.assistance-tool-card h3 {
  margin: 0 0 14px;
  color: #102647;
  font-size: 24px;
}

.assistance-tool-card p {
  margin: 0 0 18px;
  color: #334863;
  font-size: 15px;
  line-height: 1.55;
}

.tool-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 6px 0 18px;
  padding: 0 22px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(to bottom, #2aa6e8, #0b6da8);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(10, 107, 168, 0.22);
}

.tool-note {
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid #dbe3ee;
  color: #6b7a8c !important;
  font-size: 13px !important;
}

.assistance-cta-section {
  background: #ffffff;
}

/* Responsive assistance */

@media (max-width: 1100px) {
  .assistance-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 58px 0;
  }

  .assistance-visual {
    min-height: 330px;
  }

  .assistance-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assistance-security-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .assistance-hero-inner {
    padding: 46px 0;
  }

  .assistance-hero-copy h1 {
    font-size: 34px;
  }

  .assistance-hero-copy p {
    font-size: 17px;
  }

  .assistance-visual {
    min-height: 260px;
  }

  .support-card-visual {
    max-width: 390px;
  }

  .assistance-steps {
    grid-template-columns: 1fr;
  }

  .assistance-security-content,
  .assistance-tool-card {
    padding: 24px 20px;
  }

  .assistance-section,
  .assistance-security-section,
  .assistance-cta-section {
    padding: 42px 0;
  }
}
.assistance-download-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.assistance-download-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(to bottom, #2aa6e8, #0b6da8);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(10, 107, 168, 0.25);
}

.assistance-download-card h3 {
  margin: 0 0 14px;
  color: #102647;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
}

.assistance-download-card p {
  margin: 0 0 18px;
  color: #334863;
  font-size: 15px;
  line-height: 1.55;
}

.assistance-download-btn {
  width: 100%;
  min-height: 50px;
  margin: 4px 0 18px;
  border-radius: 10px;
  text-align: center;
}

.assistance-download-note {
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid #dbe3ee;
  color: #6b7a8c !important;
  font-size: 13px !important;
}

/* =========================================================
   ASSISTANCE HERO — PLANÈTE ROTATIVE + FAISCEAUX DE DONNÉES
   ========================================================= */

.remote-planet-hero {
  position: relative;
  width: min(100%, 540px);
  height: 380px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

/* Halo lumineux */
.remote-planet-glow {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(117, 217, 255, 0.30) 0%,
    rgba(42, 166, 232, 0.12) 45%,
    transparent 72%
  );
  filter: blur(8px);
  animation: rph-glow 4s ease-in-out infinite;
  z-index: 0;
}

/* ——— PLANÈTE ——— */
.remote-planet {
  position: absolute;
  z-index: 2;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 34px rgba(117, 217, 255, 0.30),
    inset 0 0 0 2px rgba(255, 255, 255, 0.10);
  animation: rph-float 5s ease-in-out infinite;
}

/* Surface scrollante : 2 copies côte à côte pour la boucle infinie */
.remote-planet-surface {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  display: flex;
  background: linear-gradient(
    180deg,
    #a8e2ff 0%,
    #2aa6e8 36%,
    #0f6fad 70%,
    #0a4d82 100%
  );
  animation: rph-spin 9s linear infinite;
}

.rps-copy {
  position: relative;
  flex: 0 0 50%;
  height: 100%;
}

/* Bandes atmosphériques */
.rpc-band {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.rpc-band-1 { top: 26%; }
.rpc-band-2 { top: 50%; }
.rpc-band-3 { top: 73%; }

/* Continents */
.rpc-continent {
  position: absolute;
  background: rgba(4, 14, 30, 0.34);
  filter: blur(1.5px);
}

.rpc-c1 {
  top: 32%;
  left: 18%;
  width: 46%;
  height: 20%;
  border-radius: 62% 38% 55% 45% / 55% 48% 52% 45%;
}

.rpc-c2 {
  top: 60%;
  left: 48%;
  width: 38%;
  height: 17%;
  border-radius: 44% 56% 38% 62% / 50% 52% 48% 50%;
}

.rpc-c3 {
  top: 18%;
  left: 62%;
  width: 24%;
  height: 12%;
  border-radius: 55% 45% 60% 40% / 52% 48% 52% 48%;
}

/* Éclairage 3D statique (ne tourne pas) */
.remote-planet-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%,
      rgba(255, 255, 255, 0.58) 0%,
      transparent 22%
    ),
    radial-gradient(circle at 72% 76%,
      rgba(4, 12, 28, 0.58) 0%,
      transparent 28%
    );
  pointer-events: none;
}

/* ——— SVG FAISCEAUX ——— */
.remote-beams-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}

/* Lignes en tirets qui coulent */
.rbl {
  stroke: rgba(117, 217, 255, 0.62);
  stroke-width: 1.5;
  stroke-dasharray: 7 5;
  fill: none;
  filter:
    drop-shadow(0 0 4px rgba(117, 217, 255, 0.55))
    drop-shadow(0 0 8px rgba(117, 217, 255, 0.30));
  animation: rbl-flow 0.5s linear infinite;
}

/* Particules */
.rbc {
  fill: #b9efff;
  filter:
    drop-shadow(0 0 5px rgba(185, 239, 255, 0.95))
    drop-shadow(0 0 12px rgba(117, 217, 255, 0.75));
}

.rbc-md {
  fill: #75d9ff;
}

.rbc-sm {
  fill: #b9efff;
  opacity: 0.72;
}

/* ——— PCs ——— */
.remote-pc {
  position: absolute;
  z-index: 5;
  display: grid;
  justify-items: center;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.30));
}

.remote-pc-a {
  left: 8px;
  bottom: 48px;
  animation: rph-pc-a 4.5s ease-in-out infinite;
}

.remote-pc-b {
  right: 8px;
  bottom: 48px;
  animation: rph-pc-b 4.8s ease-in-out infinite;
}

.remote-pc-screen {
  position: relative;
  width: 118px;
  height: 76px;
  overflow: hidden;
  border: 5px solid #061224;
  border-radius: 10px 10px 4px 4px;
  background:
    radial-gradient(circle at 54% 54%, rgba(104, 218, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #07172b 0%, #0c3564 100%);
  box-shadow:
    inset 0 0 20px rgba(95, 205, 255, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.remote-pc-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(106, 211, 255, 0.18) 0 1px,
    transparent 1px 12px
  );
}

.remote-pc-screen span {
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 999px;
  background: rgba(126, 221, 255, 0.92);
  box-shadow: 0 0 8px rgba(126, 221, 255, 0.60);
}

.remote-pc-screen span:nth-child(1) { top: 20px; width: 52px; }
.remote-pc-screen span:nth-child(2) { top: 35px; width: 72px; }
.remote-pc-screen span:nth-child(3) { top: 50px; width: 42px; }

.remote-pc-stand {
  width: 22px;
  height: 18px;
  background: linear-gradient(180deg, #d9e5f2, #8194ac);
  clip-path: polygon(25% 0, 75% 0, 90% 100%, 10% 100%);
}

.remote-pc-base {
  width: 72px;
  height: 8px;
  background: linear-gradient(180deg, #aab7c8, #60758d);
  border-radius: 999px;
}

/* ——— CURSEUR ——— */
.remote-cursor {
  position: absolute;
  z-index: 7;
  top: 52px;
  right: 50px;
  width: 26px;
  height: 26px;
  background: #ffffff;
  clip-path: polygon(
    0 0, 0 100%, 35% 78%,
    51% 100%, 68% 91%,
    51% 68%, 84% 68%
  );
  filter:
    drop-shadow(0 5px 7px rgba(0, 0, 0, 0.30))
    drop-shadow(0 0 8px rgba(117, 217, 255, 0.40));
  transform: rotate(-8deg);
  animation: rph-cursor 3.5s ease-in-out infinite;
}

/* ============ KEYFRAMES ============ */

@keyframes rph-glow {
  0%, 100% { transform: scale(1);    opacity: 0.80; }
  50%       { transform: scale(1.12); opacity: 1;    }
}

@keyframes rph-float {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-8px); }
}

/* Rotation de la surface : translate de 0 → -50% (une copie = boucle parfaite) */
@keyframes rph-spin {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}

/* Flux des tirets */
@keyframes rbl-flow {
  from { stroke-dashoffset: 0;   }
  to   { stroke-dashoffset: -24; }
}

@keyframes rph-pc-a {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-7px); }
}

@keyframes rph-pc-b {
  0%, 100% { transform: translateY(-3px); }
  50%       { transform: translateY(5px);  }
}

@keyframes rph-cursor {
  0%, 100% { transform: translate(0, 0)       rotate(-8deg); }
  35%       { transform: translate(-10px, 8px) rotate(-8deg); }
  70%       { transform: translate(-6px, 14px) rotate(-8deg); }
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1100px) {
  .remote-planet-hero {
    height: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .remote-planet-hero {
    width: 100%;
    max-width: 420px;
    height: 300px;
  }

  .remote-planet        { width: 155px; height: 155px; }
  .remote-planet-glow   { width: 200px; height: 200px; }

  .remote-pc-a { left: 0; }
  .remote-pc-b { right: 0; }

  .remote-pc-screen {
    width: 90px;
    height: 60px;
    border-width: 4px;
  }

  .remote-pc-screen span:nth-child(1) { top: 14px; width: 36px; }
  .remote-pc-screen span:nth-child(2) { top: 26px; width: 52px; }
  .remote-pc-screen span:nth-child(3) { top: 38px; width: 28px; }
}

@media (max-width: 480px) {
  .remote-planet-hero   { max-width: 340px; height: 260px; }
  .remote-planet        { width: 120px; height: 120px; }
  .remote-planet-glow   { width: 160px; height: 160px; }

  /* Masque les faisceaux SVG sur très petit écran (décalage trop visible) */
  .remote-beams-svg     { display: none; }

  .remote-pc-screen     { width: 78px; height: 54px; }
  .remote-pc-stand      { width: 16px; height: 14px; }
  .remote-pc-base       { width: 56px; height: 6px;  }
}

@media (prefers-reduced-motion: reduce) {
  .remote-planet-glow,
  .remote-planet,
  .remote-planet-surface,
  .remote-pc-a,
  .remote-pc-b,
  .remote-cursor,
  .rbl {
    animation: none !important;
  }
}

/* Groupe de 2 boutons OS */
.btn-download-group {
  display: flex;
  gap: 10px;
}

.btn-download-group {
  display: flex;
  gap: 10px;
}

.btn-os {
  flex: 1;
  gap: 8px;
}

/* Aligne les boutons des deux cartes sur la même ligne */
.cta-action-card {
  justify-content: space-between;
}

.cta-card-ticket .btn-glpi {
  margin-top: auto;
}