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

:root {
  --bg: #0a0a0a;
  --surface: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.10);
  --text: #ffffff;
  --muted: #a3a3a3;
  --green: #34d399;
  --blue: #60a5fa;
  --orange: #fb923c;
  --radius-xl: 1.75rem;
  --radius-2xl: 2rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* COULEURS */
.green { color: var(--green); }
.blue  { color: var(--blue); }

/* BADGES & LABELS */
.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(52,211,153,0.25);
  background: rgba(52,211,153,0.10);
  color: #6ee7b7;
  border-radius: 9999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* BOUTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary {
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 4px 24px rgba(255,255,255,0.12);
}
.btn-primary:hover { opacity: 0.92; transform: scale(1.02); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}
.btn-secondary:hover { background: rgba(255,255,255,0.10); }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.navbar-logo img { display: block; }
.navbar-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.navbar-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
}
.navbar-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.navbar-links a:hover { color: #fff; }
/* masquer les liens desktop sur mobile */
@media (max-width: 640px) { .navbar-links { display: none; } }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
@media (max-width: 640px) { .hamburger { display: flex; } }

/* ─── SIDEBAR ─── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.open { display: block; }

.sidebar {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 75vw;
  max-width: 300px;
  background: #111;
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sidebar-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}
.sidebar-close:hover { color: #fff; }

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sidebar-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: color 0.2s, background 0.2s;
}
.sidebar-links a:hover { color: #fff; background: var(--surface); }

/* ─── HERO ─── */
.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(34,197,94,0.18), transparent 30%),
    radial-gradient(circle at left,       rgba(59,130,246,0.14), transparent 35%);
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  padding: 4rem 1.5rem;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; padding: 6rem 1.5rem; }
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 1.25rem;
}
.hero-sub { color: var(--muted); max-width: 520px; font-size: 1.05rem; margin-bottom: 2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-actions-mobile { display: none; }
@media (max-width: 1023px) {
  .hero-actions-desktop { display: none; }
  .hero-actions-mobile {
    display: flex;
    grid-column: 1 / -1;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.hero-pills { display: grid; gap: 0.75rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 480px) { .hero-pills { grid-template-columns: repeat(3, 1fr); max-width: 480px; } }

.pill {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 1rem;
  font-size: 0.85rem;
}
.pill-title { font-weight: 600; margin-bottom: 0.25rem; }
.pill-sub { color: var(--muted); }

/* Dashboard mockup */
.dashboard-outer {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-2xl);
  padding: 1rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.dashboard-inner {
  border: 1px solid var(--border);
  background: #111;
  border-radius: 1.5rem;
  padding: 1rem;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
/* ─── DASHBOARD HEADER ─── */
.dashboard-inner {
  border: 1px solid var(--border);
  background: #111;
  border-radius: 1.5rem;
  padding: 0.6rem 1rem;
  margin-bottom: 0.75rem;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.db-title { font-size: 1.1rem; font-weight: 600; }
.online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ─── PHONE FRAME ─── */
.hero-dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  position: relative;
  width: 280px;
  background: #1a1a1a;
  border-radius: 2.75rem;
  border: 2px solid rgba(255,255,255,0.12);
  padding: 1rem 0.75rem;
  box-shadow:
    0 0 0 6px #111,
    0 0 0 8px rgba(255,255,255,0.06),
    0 32px 80px rgba(0,0,0,0.6);
}
.phone-notch {
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 9999px;
  margin: 0 auto 0.75rem;
}
.phone-screen {
  border-radius: 1.75rem;
  overflow: hidden;
  background: #000;
}
.phone-screen video {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .phone-frame { width: 320px; }
}

/* ─── FEATURES / TABS ─── */
.features { padding: 4rem 0; }

.tabs-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  border-radius: 0.5rem 0.5rem 0 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .tabs-nav { gap: 0.25rem; }
  .tab-btn { font-size: 0.78rem; padding: 0.5rem 0.6rem; }
}
.tab-btn:hover { color: #fff; background: var(--surface); }
.tab-btn.active { color: #fff; border-bottom-color: var(--green); }

.tab-panels { position: relative; }

.tab-panel {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.tab-panel.active { display: block; }

.tab-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.tab-panel h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.75rem; }
.tab-panel p  { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 560px; }

/* ─── TRUSTED BY ─── */
.trusted-bar {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}
.trusted-label {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  padding-left: 1.5rem;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trusted-track-wrap {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.trusted-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: trusted-scroll 22s linear infinite;
}
.trusted-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.2s;
}
.trusted-item:hover { color: #fff; }
@keyframes trusted-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── VIDÉO ─── */
.video-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: 4rem 0;
}
.video-duo {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .video-duo { grid-template-columns: 1fr 1fr; } }

.video-placeholder-wrap {
  border: 1px solid var(--border);
  background: #111;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  position: relative;
}
.video-placeholder {
  aspect-ratio: 16/9;
  position: relative;
  width: 100%;
}
.video-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}
.video-coming {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}

/* ─── COMMENT ÇA MARCHE ─── */
.how-section {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}
.how-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 3rem;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.how-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.5rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.how-step:hover {
  border-color: rgba(52,211,153,0.4);
  box-shadow: 0 0 0 1px rgba(52,211,153,0.15), 0 8px 32px rgba(52,211,153,0.08);
}
.how-step a { color: var(--green); text-decoration: none; }
.how-step a:hover { text-decoration: underline; }

.how-dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #0a0a0a;
  border: 1px solid rgba(52,211,153,0.5);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.how-icon-wrap {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.how-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
}
@media (max-width: 520px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ─── SIMULATEUR ─── */
.simulator-section { padding: 4rem 0; }
.simulator-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .simulator-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }

.simulator-section h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; margin-bottom: 1rem; }
.simulator-section p  { color: var(--muted); margin-bottom: 1.25rem; }

.sim-example {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.sim-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.sim-inputs { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .sim-inputs { grid-template-columns: 1fr 1fr; } }
.sim-label.full { grid-column: 1 / -1; }

.sim-label { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.sim-label select,
.sim-label input[type="number"] {
  background: #111;
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}
.range-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.range-row input[type="range"] { flex: 1; min-width: 120px; accent-color: var(--green); }

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: #111;
  overflow: hidden;
  flex-shrink: 0;
}
.qty-btn {
  background: none;
  border: none;
  color: var(--green);
  font-size: 1.2rem;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.qty-btn:hover { background: rgba(52,211,153,0.1); }
.qty-stepper input[type="number"] {
  width: 3.5rem;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 0;
  height: 2.5rem;
  outline: none;
  -moz-appearance: textfield;
}
.qty-stepper input[type="number"]::-webkit-inner-spin-button,
.qty-stepper input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }

.sim-result {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) { .sim-result { grid-template-columns: 1fr auto; } }

.sim-selected {
  border: 1px solid var(--border);
  background: #111;
  border-radius: 1.5rem;
  padding: 1.25rem;
}
.sim-selected-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.sim-selected-name  { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.35rem; }
.sim-selected-desc  { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.85rem; }

.sim-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sim-tag {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 9999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.8rem;
  color: #e5e5e5;
}
.sim-tag.green-tag {
  border-color: rgba(52,211,153,0.2);
  background: rgba(52,211,153,0.1);
  color: var(--green);
}

.sim-total-box {
  border: 1px solid rgba(52,211,153,0.2);
  background: rgba(52,211,153,0.1);
  border-radius: 1.5rem;
  padding: 1.25rem;
  min-width: 0;
  width: 100%;
}
@media (min-width: 640px) { .sim-total-box { min-width: 220px; width: auto; } }
.sim-total-label  { font-size: 0.8rem; color: #a7f3d0; margin-bottom: 0.5rem; }
.sim-total-value  { font-size: 2.25rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.sim-total-detail { font-size: 0.85rem; color: #d1fae5; }

.sim-note {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.7;
}
.sim-note-title { font-weight: 600; color: #fff; margin-bottom: 0.5rem; }

/* ─── Multistep screens ─── */
.sim-screen { display: none; }
.sim-screen.active { display: block; }

/* Progress bar */
.sim-progress { margin-bottom: 1.75rem; }
.sim-progress-track {
  height: 3px;
  background: var(--border);
  border-radius: 9999px;
  margin-bottom: 0.6rem;
  position: relative;
}
.sim-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 9999px;
  width: 0%;
  transition: width 0.35s ease;
}
.sim-progress-steps { display: flex; justify-content: space-between; }
.sim-progress-dot {
  width: 1.5rem; height: 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: #111;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.sim-progress-dot.active { background: var(--green); border-color: var(--green); color: #000; }

/* Nav row */
.sim-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 0.75rem;
}
.sim-btn-next {
  background: var(--green);
  color: #000;
  border: none;
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}
.sim-btn-next:hover { opacity: 0.85; }
.sim-btn-back {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 9999px;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.sim-btn-back:hover { border-color: #fff; color: #fff; }

/* Result screen */
.sim-result-header { border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 0.25rem; }
.sim-result-sub { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
.sim-breakdown { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.sim-breakdown-line { font-size: 0.85rem; color: var(--muted); padding-left: 1rem; position: relative; }
.sim-breakdown-line::before { content: "—"; position: absolute; left: 0; color: var(--border); }

/* ─── Simulator steps ─── */
.sim-step { margin-bottom: 1.5rem; }
.sim-step-label { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }

.sim-choice-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.sim-choice-row--sm { gap: 0.5rem; }

.sim-choice {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid var(--border);
  background: #111;
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  color: #fff;
  text-align: center;
}
.sim-choice:hover { border-color: rgba(52,211,153,0.4); background: rgba(52,211,153,0.05); }
.sim-choice.active { border-color: var(--green); background: rgba(52,211,153,0.1); }
.sim-choice-icon { font-size: 1.5rem; }
.sim-choice-text { font-size: 0.95rem; font-weight: 600; }
.sim-choice-sub { font-size: 0.75rem; color: var(--muted); }

.sim-choice--sm { flex: 0 1 auto; min-width: 100px; padding: 0.65rem 1rem; border-radius: 1rem; }
.sim-choice--sm .sim-choice-icon { font-size: 1.2rem; }
.sim-choice--sm .sim-choice-text { font-size: 0.85rem; }

.sim-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #e5e5e5;
  user-select: none;
}
.sim-checkbox-label input[type="checkbox"] { display: none; }
.sim-checkbox-box {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  background: #111;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
}
.sim-checkbox-label input:checked + .sim-checkbox-box {
  background: var(--green);
  border-color: var(--green);
}
.sim-checkbox-label input:checked + .sim-checkbox-box::after {
  content: "";
  position: absolute;
  left: 3px; top: 6px;
  width: 5px; height: 8px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-3px);
}

.sim-renewal-info {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* ─── Device card ─── */
.sim-device-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  background: #111;
  border-radius: 1.5rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.sim-device-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 0.75rem;
  background: #1a1a1a;
  flex-shrink: 0;
  border: 1px solid var(--border);
  padding: 0.5rem;
}
.sim-device-info { flex: 1; min-width: 0; }
.sim-device-name { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.65rem; }
.sim-device-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sim-device-features li {
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.sim-device-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
}
.sim-spec-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--green);
  text-decoration: none;
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: 9999px;
  padding: 0.3rem 0.85rem;
  transition: background 0.15s;
}
.sim-spec-link:hover { background: rgba(52,211,153,0.1); }
@media (max-width: 480px) {
  .sim-device-card { flex-direction: column; }
  .sim-device-img { width: 100%; height: 140px; }
}

/* ─── ÉQUIPE ─── */
.team-section {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}
.team-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 2rem;
}
.team-photo-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.team-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 16/6;
  background: #111;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
}

/* ─── FAQ ─── */
.faq-section {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  padding: 4rem 0;
}
.faq-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.faq-section h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; margin-bottom: 1rem; }
.faq-section > .container > div > p { color: var(--muted); }

.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  border: 1px solid var(--border);
  background: rgba(17,17,17,0.7);
  border-radius: 1.5rem;
  padding: 1.25rem;
}
.faq-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.faq-item p  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ─── CTA ─── */
.cta-section { padding: 4rem 0; }
.cta-card {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: var(--radius-2xl);
  padding: 3rem 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.cta-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 1fr auto; align-items: center; } }

.cta-card h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; margin-bottom: 0.75rem; }
.cta-card p  { color: var(--muted); max-width: 580px; }
.cta-actions { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 480px) { .cta-actions { flex-direction: row; } }
@media (min-width: 1024px) { .cta-actions { flex-direction: column; } }

/* ─── TECHNICIENS ─── */
.tech-hero {
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}
.tech-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}
.tech-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}
.tech-section { padding: 3rem 0 5rem; }
.tech-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .tech-grid { grid-template-columns: 340px 1fr; align-items: start; }
}
.tech-list { display: flex; flex-direction: column; gap: 1rem; }

.tech-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
}
.tech-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(52,211,153,0.3);
  background: rgba(52,211,153,0.08);
  border-radius: 9999px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.75rem;
}
.tech-card-name { font-size: 1.1rem; font-weight: 700; color: #fff; }
.tech-card-alias { font-size: 0.85rem; color: var(--muted); margin-top: 0.15rem; }
.tech-card-zone { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; margin-bottom: 1rem; }
.tech-card-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.tech-btn-map {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.tech-btn-map:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.tech-btn-wa {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 9999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: var(--green);
  text-decoration: none;
  transition: background 0.15s;
}
.tech-btn-wa:hover { background: rgba(52,211,153,0.18); }

.tech-join-card {
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
}
.tech-join-title { font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.tech-join-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.tech-btn-join {
  display: inline-flex; align-items: center;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 9999px;
  padding: 0.55rem 1.25rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.tech-btn-join:hover { opacity: 0.85; }

.tech-map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #111;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  position: sticky;
  top: 5rem;
}
.tech-map-wrap iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 3.25rem;
  height: 3.25rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-inner a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.footer-company-name { font-weight: 700; color: #fff; font-size: 0.95rem; letter-spacing: 0.04em; }
.footer-company-address { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }
.footer-phone { display: inline-block; margin-top: 0.35rem; font-size: 0.9rem; color: var(--green); text-decoration: none; }
.footer-phone:hover { text-decoration: underline; }
.footer-socials { display: flex; align-items: center; gap: 0.5rem; }
.footer-social-link {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color 0.15s, color 0.15s;
}
.footer-social-link:hover { border-color: var(--green); color: var(--green); }
.footer-inner a:hover { color: #fff; }

/* ─── MENTIONS LÉGALES ─── */
.legal-page { padding: 4rem 0; }
.legal-container { max-width: 760px; }

.legal-back {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.legal-back:hover { color: #fff; }

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.legal-block {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.legal-block h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--green);
}
.legal-block p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--green); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }

.legal-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1.5rem;
  text-align: right;
}
