:root {
  --bg-main: #0b0c10;
  --bg-alt: #14151f;
  --accent: #2c9eff;
  --accent-soft: #00e5ff;
  --text-main: #ffffff;
  --text-muted: #b3b3b3;
  --danger: #ff4b5c;
  --radius: 14px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
  --border-glow: 1px solid rgba(44, 158, 255, 0.28);
  scroll-padding-top: 90px;
}

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
  background: radial-gradient(circle at top, #101426 0, #050609 60%);
  color: var(--text-main);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  z-index: 1;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* ===== BG GRILLE ANIMÉE ===== */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top, rgba(44, 158, 255, 0.25), transparent 55%),
    #050609;
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 224, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(0, 255, 255, 0.12), transparent 70%);
  background-size: 90px 90px, 90px 90px, 100%;
  opacity: 0.35;
  animation: move-grid 26s linear infinite;
  mix-blend-mode: screen;
}

/* lignes lumineuses qui balayent l'écran */
.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 180, 255, 0.07),
    rgba(0, 180, 255, 0.07) 2px,
    transparent 2px,
    transparent 14px
  );
  animation: scan 18s linear infinite;
  opacity: 0.14;
  pointer-events: none;
}

@keyframes scan {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-180px);
  }
}

@keyframes move-grid {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-80px, -80px, 0);
  }
}

.grid-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.12), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(44, 158, 255, 0.18), transparent 60%);
  mix-blend-mode: screen;
}

/* ===== LAYOUT ===== */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 18px 64px;
}

/* ===== HEADER / NAV ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20, 21, 31, 0.96), rgba(10, 11, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 14px;
  backdrop-filter: blur(14px);
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 300px;
  height: auto;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 50%),
    linear-gradient(135deg, #2c9eff, #00e5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 24px rgba(44, 158, 255, 0.75);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.logo-mark svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.logo-text-main {
  font-family: "Rajdhani", system-ui;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.2s ease;
}

nav a:hover {
  color: var(--text-main);
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(44, 158, 255, 0.5);
  background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.22), rgba(17, 24, 39, 0.96));
  color: #fff;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(44, 158, 255, 0.4);
}

.nav-cta span {
  font-size: 1.1rem;
  line-height: 1;
}

/* ===== MOBILE MENU ===== */
#mobileMenuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: flex-end;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#mobileMenuOverlay.visible {
  display: flex;
  opacity: 1;
}

#mobileMenu {
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: rgba(10, 12, 20, 0.98);
  border-left: 1px solid rgba(0, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.25);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

#mobileMenu.visible {
  transform: translateX(0);
}

#mobileMenu a {
  text-decoration: none;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

#mobileMenu .nav-cta {
  border: 1px solid rgba(0, 255, 255, 0.6);
  text-align: center;
  border-radius: 999px;
  padding: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

#closeMobileNav {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: 10px;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  margin-top: 40px;
  padding: 30px 26px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, rgba(44, 158, 255, 0.18), rgba(10, 10, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  opacity: 0.45;
  filter: blur(1px);
  top: -260px;
  right: -160px;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 18, 0.8);
  border: 1px solid rgba(44, 158, 255, 0.4);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #00ff9d, #00875c);
  box-shadow: 0 0 12px rgba(0, 255, 157, 0.8);
}

.hero-title {
  font-family: "Rajdhani", system-ui;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

span.highlight {
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-typing {
  font-family: "Rajdhani", system-ui;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
}

.hero-typing .cursor {
  display: inline-block;
  width: 10px;
  background: var(--accent-soft);
  margin-left: 4px;
  animation: blink 0.9s step-end infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.hero-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12, 18, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease;
}

.btn-primary {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.13), transparent 50%),
    linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #0b0c10;
  box-shadow: 0 16px 32px rgba(44, 158, 255, 0.65);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(44, 158, 255, 0.8);
}

.btn-ghost {
  background: rgba(12, 16, 26, 0.96);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(18, 24, 38, 0.96);
  border-color: rgba(44, 158, 255, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.hero-subnote {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* HERO right card */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-orbit {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(0, 229, 255, 0.25), rgba(10, 11, 20, 0.96));
  border: var(--border-glow);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
  padding: 20px 18px;
}

.card-orbit::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.07), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.32), transparent 55%);
  opacity: 0.85;
  mix-blend-mode: screen;
}

.card-orbit-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 8, 15, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.chip-led {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.9);
}

.orbit-center {
  position: relative;
  margin: 20px auto 16px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 55%),
    rgba(5, 8, 15, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}

.orbit-center::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 1px dashed rgba(0, 229, 255, 0.4);
}

.orbit-circle {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  border: 1px dashed rgba(44, 158, 255, 0.35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(44, 158, 255, 0.9);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit 12s linear infinite;
}

@keyframes orbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-105px);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateY(-105px);
  }
}

.orbit-metric {
  text-align: center;
}

.orbit-metric .label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 4px;
}

.orbit-metric .value {
  font-family: "Rajdhani", system-ui;
  font-size: 1.4rem;
}

.orbit-badges {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.orbit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(5, 8, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.orbit-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.orbit-badge-dot.blue {
  background: var(--accent);
}

.orbit-badge-dot.green {
  background: #00ff9d;
}

/* ===== SECTIONS ===== */
section {
  margin-top: 50px;
  background: rgba(10, 15, 25, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow:
    0 0 24px rgba(0, 255, 255, 0.08),
    0 16px 30px rgba(0, 0, 0, 0.75);
  padding: 18px 22px;
}

.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin-bottom: 4px;
}

.section-title {
  font-family: "Rajdhani", system-ui;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* Services grid */
.services-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: rgba(12, 13, 20, 0.94);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    border-color 0.14s ease,
    background 0.14s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at top, rgba(44, 158, 255, 0.32), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 18px rgba(0, 255, 255, 0.35),
    0 14px 30px rgba(0, 0, 0, 0.85);
  border-color: rgba(0, 255, 255, 0.7);
  background: rgba(6, 10, 20, 0.98);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 50%),
    rgba(14, 18, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.7rem;
}

.tag {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 10, 18, 0.9);
  color: var(--text-muted);
}

/* Pour qui */
.who-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.who-card {
  background: rgba(12, 13, 20, 0.94);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 16px;
}

.who-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.who-title span.icon {
  font-size: 1.1rem;
}

.who-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.who-list {
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.who-list li {
  display: flex;
  gap: 6px;
  margin-bottom: 5px;
}

.who-list li::before {
  content: "•";
  color: var(--accent-soft);
  margin-top: 1px;
}

/* Contact */
.contact-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 16px;
}

.contact-card {
  background: rgba(12, 13, 20, 0.94);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 16px 18px;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  font-size: 0.8rem;
}

form .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
}

input,
textarea,
select {
  width: 100%;
  padding: 7px 9px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 16, 0.96);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.8rem;
  outline: none;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(44, 158, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(44, 158, 255, 0.6);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-side-card {
  background: rgba(12, 13, 20, 0.94);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
}

.contact-side-card strong {
  color: var(--text-main);
  font-size: 0.84rem;
}

.contact-side-card p {
  margin-top: 4px;
}

/* Footer */
footer {
  margin-top: 36px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 1;
}

footer a {
  color: var(--accent-soft);
  text-decoration: none;
}

/* Révélation au scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Points d'arrière-plan */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300ffff' fill-opacity='0.04'%3E%3Ccircle cx='2' cy='2' r='1' /%3E%3Ccircle cx='12' cy='22' r='1' /%3E%3Ccircle cx='42' cy='62' r='1' /%3E%3Ccircle cx='62' cy='12' r='1' /%3E%3Ccircle cx='72' cy='32' r='1' /%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  mix-blend-mode: screen;
}

/* Petits ajouts : confiance / pourquoi / certifs */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.hero-trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
}

.trust-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0 24px;
  opacity: 0.9;
}

.trust-logos img {
  height: 30px;
  filter: brightness(0) invert(1) opacity(0.9);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.trust-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.why-card {
  border-radius: 16px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(circle at top left, rgba(0, 200, 255, 0.05), transparent 55%),
    rgba(5, 8, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.why-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-title .icon {
  font-size: 1.1rem;
}

.why-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cert-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.cert-bullet {
  margin-top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-soft);
}

/* HR stylisé dans les cartes services */
.service-card hr {
  border: none;
  height: 2px;
  background: rgba(0, 173, 255, 0.35);
  box-shadow: 0 0 10px rgba(0, 173, 255, 0.4);
  margin: 18px 0;
  border-radius: 5px;
}

/* ===== ESPACE CLIENT – CARTE PROFIL ===== */
.client-card {
  position: relative;
  margin-top: 18px;
  max-width: 520px;
  border-radius: 18px;
  padding: 16px 18px 18px;
  background:
    radial-gradient(circle at top left, rgba(44, 158, 255, 0.22), transparent 55%),
    rgba(10, 11, 20, 0.96);
  border: 1px solid rgba(0, 255, 255, 0.24);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(0, 255, 255, 0.2);
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(0, 255, 255, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(44, 158, 255, 0.25), transparent 55%);
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}

.client-card--error {
  border-color: rgba(255, 75, 92, 0.8);
  background:
    radial-gradient(circle at top left, rgba(255, 75, 92, 0.25), transparent 60%),
    rgba(15, 8, 12, 0.96);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(255, 75, 92, 0.4);
}

.client-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.client-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.client-card-sub {
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Chip */
.client-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(3, 10, 18, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.45);
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.client-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.9);
}

/* Grille infos */
.client-info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 10px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 12px;
}

.client-info-item {
  font-size: 0.8rem;
  min-width: 0;
}

.client-info-item--full {
  grid-column: 1 / -1;
}

.client-info-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.client-info-icon {
  font-size: 0.9rem;
  opacity: 0.9;
}

.client-info-value {
  font-size: 0.84rem;
  word-break: break-word;
}

.client-info-empty {
  opacity: 0.6;
  font-style: italic;
}

/* Statut */
.client-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 18, 14, 0.9);
  border: 1px solid rgba(0, 255, 157, 0.7);
  font-size: 0.76rem;
}

.client-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.client-status-dot--ok {
  background: #00ff9d;
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.9);
}

.client-status-dot--danger {
  background: var(--danger);
  box-shadow: 0 0 10px rgba(255, 75, 92, 0.9);
}

.client-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.client-status-text {
  color: var(--text-muted);
}

.client-error-text {
  font-size: 0.82rem;
  margin-top: 10px;
}

/* Actions */
.client-actions {
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.client-actions .btn-primary,
.client-actions .btn-ghost {
  padding-inline: 14px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.btn-ghost--danger {
  border-color: rgba(255, 75, 92, 0.7);
}

.btn-ghost--danger:hover {
  border-color: rgba(255, 75, 92, 0.9);
  box-shadow: 0 12px 26px rgba(255, 75, 92, 0.45);
}

/* Hint bas de carte */
.client-hint {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .menu-logo img {
    max-width: 50px;
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cert-section-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-logos {
    justify-content: flex-start;
  }

  .trust-logos img {
    height: 20px;
  }
}

@media (max-width: 720px) {
  header {
    padding-inline: 16px;
  }

  nav {
    display: none;
  }

  .card-orbit {
    aspect-ratio: auto;
    height: auto;
    max-width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .menu-logo img {
    max-width: 50px;
  }


  .hero {
    padding: 22px 18px;
    margin-top: 26px;
  }

  .page {
    padding-inline: 12px;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .who-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  form {
    grid-template-columns: 1fr;
  }

  .hero-typing {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    white-space: normal;
    overflow: visible;
    line-height: 1.3;
    max-width: 100%;
    word-break: break-word;
  }

  .client-info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-card {
    max-width: 100%;
  }

  .client-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .client-actions .btn-primary,
  .client-actions .btn-ghost {
    justify-content: center;
    width: 100%;
  }
}
