   :root{
  --bg:#070913;
  --bg2:#0a0f22;

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.56);

  --line: rgba(255,255,255,.12);

  /* CTA couleur (comme ta capture, bleu-vert) */
  --cta:#1b7f8d;
  --ctaText:#eaf7ff;

  /* hover demandé */
  --ctaHoverBg: rgba(30,30,34,.86); /* gris foncé */
  --ctaHoverText: var(--cta);

  --r: 18px;
  --shadow: 0 28px 90px rgba(0,0,0,.55);
  --shadow2: 0 14px 45px rgba(0,0,0,.35);

  --brand:#6d5cff;
  --brandHover:#5b4cf0;

  --max: 1120px;
}

html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x:hidden;
  font-size: 15.5px;
  line-height: 1.6;
}

/* ===== Background global (tu le gardes) ===== */
.bg-wrap{
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1200px 900px at 18% 12%, rgba(109,92,255,.22), transparent 60%),
    radial-gradient(1000px 850px at 85% 18%, rgba(45,212,255,.16), transparent 62%),
    radial-gradient(900px 700px at 55% 115%, rgba(180,80,255,.09), transparent 68%),
    linear-gradient(180deg, #070913 0%, #0a0f22 100%);
}
.bg-tech{
  position: fixed;
  inset: -10%;
  z-index: -2;
  pointer-events:none;
  opacity: .10;
  filter: blur(.25px);
  transform: rotate(-2deg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='840' height='840' viewBox='0 0 840 840'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.14)' stroke-width='1'%3E%3Cpath d='M70 120h260v150h170v110h320'/%3E%3Cpath d='M120 700h350v-160h180v-90h190'/%3E%3Cpath d='M700 160v190h-120v160h-120'/%3E%3Cpath d='M220 300v170h150'/%3E%3Cpath d='M420 420h220v170'/%3E%3C/g%3E%3Cg fill='rgba(45,212,255,0.16)'%3E%3Ccircle cx='330' cy='270' r='3'/%3E%3Ccircle cx='420' cy='420' r='3'/%3E%3Ccircle cx='560' cy='350' r='3'/%3E%3Ccircle cx='420' cy='540' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 860px 860px;
  background-repeat: repeat;
}
.bg-noise{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events:none;
  opacity: .13;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,.18) 1px, transparent 1.6px),
    radial-gradient(rgba(0,0,0,.18) 1px, transparent 1.6px);
  background-size: 180px 180px, 240px 240px;
  background-position: 0 0, 80px 40px;
  filter: blur(.25px);
}

/* ===== Container ===== */
.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 34px;
}



/* ===== Navbar ===== */
.nav-glass{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7,9,19,.60);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  transition: padding .18s ease;
}
.nav-glass.shrink .nav-inner{ padding: 8px 22px; }

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  color:inherit;
  min-width: 240px;
}
.logo-img{
  width:44px; height:44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.brand-title{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 14px;
  line-height: 1.1;
  margin: 0;
}
.brand-sub{
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
  line-height: 1.1;
}
.nav-links a{
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-size: 13px;
  margin: 0 10px;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(109,92,255,.0), rgba(45,212,255,.7), rgba(109,92,255,.0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
  opacity: .9;
}
.nav-links a:hover{ color: rgba(255,255,255,.95); }
.nav-links a:hover::after{ transform: scaleX(1); }

 /* Main layout */
.page{
    min-height: calc(100vh - 70px);
    display:flex;
    align-items:center;
    position: relative;
    overflow:hidden;
}
.page::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.52), rgba(0,0,0,.52));
    z-index: 0;
    pointer-events:none;
}
.page::after{
    content:"";
    position:absolute;
    inset:0;
    z-index: 1;
    pointer-events:none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255,255,255,.03);
}
.page-inner{
    position: relative;
    z-index: 2;
    width:100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 48px 22px;
}

/* Glass card */
.glass{
    /*border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);*/
    border-radius: 22px;
    box-shadow: var(--shadow2);
    padding: clamp(22px, 4vw, 36px);
}
.kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size: 12.5px;
    color: rgba(255,255,255,.70);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

h1{
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.05;
    font-size: clamp(30px, 3.2vw, 46px);
}
p{
      margin: 0;
      color: rgba(255,255,255,.72);
      font-size: 15.5px;
      line-height: 1.75;
      max-width: 80ch;
    }


/* ===== Hover lift (cards, etc.) ===== */
.lift{
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background-color .16s ease;
  will-change: transform;
}
.lift:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow2);
  border-color: rgba(255,255,255,.26) !important;
}

/* ===== HERO (comme ta capture : texte “flottant” + glass + blur) ===== */
.hero{
  min-height: calc(100vh - 70px);
  display:flex;
  align-items:center;
  position: relative;
  overflow:hidden;
}

/* voile sombre + glass global “regard à travers un verre” */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.52), rgba(0,0,0,.52));
  z-index: 0;
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  pointer-events:none;

  /* effet “verre” : léger flou du background */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* un peu de matière */
  background: rgba(255,255,255,.03);
}

.hero-full{
  width:100%;
  position: relative;
  z-index: 2;
  padding: clamp(34px, 6vw, 110px) 0;
}

.hero-panel{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  text-align:center;
}

/* texte flottant */
.hero h1{
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.04;
  font-size: clamp(38px, 4.8vw, 68px);
  margin: 0;
  color: rgba(255,255,255,.95);
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}

/* petit trait sous titre */
.hero-divider{
  width: 44px;
  height: 3px;
  border-radius: 999px;
  margin: 14px auto 18px;
  background: rgba(45,212,255,.70);
  opacity: .95;
}

/* texte */
.hero p{
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  max-width: 86ch;
  font-size: clamp(15.5px, 1.35vw, 17px);
  line-height: 1.75;
  text-shadow: 0 12px 40px rgba(0,0,0,.45);
}

/* checklist rounds like Elevate */
.checks{
    margin-top: 18px;
    display:grid;
    gap: 10px;
}
.check{
    display:flex;
    align-items:flex-start;
    gap: 10px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.5;
}
.check i{
    width: 22px; height: 22px;
    display:grid;
    place-items:center;
    border-radius: 999px;
    background: rgba(45,212,255,.14);
    border: 1px solid rgba(45,212,255,.22);
    color: rgba(255,255,255,.92);
    flex: 0 0 auto;
    margin-top: 1px;
}

.actions{
    margin-top: 22px;
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* boutons */
.hero-actions{
  margin-top: 26px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}

/* base bouton */
.btn-hero{
  border-radius: 999px !important;
  padding: 12px 22px !important;
  font-weight: 600; /* plus fin */
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
  border: 1px solid rgba(255,255,255,.18) !important;
  text-decoration:none !important;
}

/* bouton CTA (demande: couleur, hover -> bg gris + texte couleur originale) */
.btn-hero-primary{
  background: var(--cta) !important;
  color: var(--ctaText) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.btn-hero-primary:hover{
  transform: translateY(-2px);
  background: var(--ctaHoverBg) !important;
  color: var(--ctaHoverText) !important;
  border-color: rgba(255,255,255,.22) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.btn-hero-primary:active{
  transform: translateY(0px);
  box-shadow: 0 10px 35px rgba(0,0,0,.32);
}

/* second bouton */
.btn-hero-outline{
  background: rgba(255,255,255,.05) !important;
  color: rgba(255,255,255,.90) !important;
  border-color: rgba(255,255,255,.22) !important;
}
.btn-hero-outline:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09) !important;
}
.btn-hero-outline:active{
  transform: translateY(0px);
  background: rgba(255,255,255,.07) !important;
}

/* ===== Sections ===== */
section{ scroll-margin-top: 90px; }
.section{ margin-top: 72px; }

.section-header{
  text-align: center;
  margin-bottom: 26px;
}
.section-header h2{
  margin:0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .1px;
  color: rgba(255,255,255,.92);
}
.section-header p{
  margin:10px auto 0;
  color: var(--muted2);
  font-size: 13.8px;
  max-width: 80ch;
}
.section-line{
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin: 12px auto 0;
  background: rgba(45,212,255,.70);
  opacity: .95;
}
.section-surface{
  padding-top: 36px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.pulse{
  width:8px; height:8px; border-radius:99px;
  background: rgba(251,191,36,.70);
  box-shadow: 0 0 0 0 rgba(251,191,36,.42);
  animation: pulse 1.6s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(251,191,36,.35)}
  70%{box-shadow:0 0 0 10px rgba(251,191,36,0)}
  100%{box-shadow:0 0 0 0 rgba(251,191,36,0)}
}

/* ===== Cards ===== */
.cardx{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  height: 100%;
}
.cardx .card-body{ padding: 18px; }
.iconbox{
  width: 46px; height: 46px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  color: rgba(45,212,255,.45);
  margin-bottom: 10px;
  transition: background-color .16s ease, transform .16s ease, filter .16s ease, color .16s ease;
}
.cardx.lift:hover .iconbox{
  background: rgba(45,212,255,.18);
  color: rgba(255,255,255,.80);
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.card-title{
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 6px;
}
.card-text{
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.55;
}

/* ===== Steps ===== */
.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  height: 100%;
}
.num{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(45,212,255,.14);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
  color: rgba(255,255,255,.88);
  flex: 0 0 auto;
  transition: background-color .16s ease;
}
.step.lift:hover .num{ background: rgba(0,0,0,.22); }
.step b{ font-size: 14px; font-weight: 900; }
.step p{ margin: 2px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ===== FAQ (+ / -) ===== */
.accordion-item{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 16px !important;
  overflow:hidden;
}
.accordion-button{
  background: transparent !important;
  color: rgba(255,255,255,.92) !important;
  font-weight: 800;
  padding: 16px 16px;
}
.accordion-button::after{ display:none !important; }
.accordion-button::before{
  content:"+";
  font-weight: 900;
  margin-right: 12px;
  width: 18px;
  display:inline-block;
  color: rgba(255,255,255,.75);
  transform: translateY(-1px);
}
.accordion-button:not(.collapsed)::before{
  content:"–";
  color: rgba(255,255,255,.90);
}
.accordion-body{
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}
.accordion-button:focus{ box-shadow:none !important; }

/* ===== Contact ===== */
.contact-card{
  border-radius: 18px;
  padding: 18px;
}
.contact-line{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 14px 16px;
  border-radius: 16px;
}
.contact-line i{
  width: 42px; height: 42px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  transition: background-color .16s ease, border-color .16s ease;
}
.contact-card.lift:hover .contact-line i{ background: rgba(45,212,255,.14); border-color: rgba(255,255,255,.22); }
.contact-line b{ font-size: 14px; font-weight: 900; }
.contact-line .small{ color: var(--muted2); font-size: 12.5px; }

.form-control{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.92) !important;
  border-radius: 12px !important;
  padding: 12px !important;
  box-shadow:none !important;
}
.form-control::placeholder{ color: rgba(255,255,255,.62); opacity: 1; }
.form-label{ font-size: 12.5px; color: rgba(255,255,255,.72); }

/* ===== Footer ===== */
footer{
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 0 38px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: var(--muted2);
  font-size: 12.5px;
}
.foot-links a{
  color: rgba(255,255,255,.70);
  text-decoration:none;
  margin-left: 14px;
}
.foot-links a:hover{ color: rgba(255,255,255,.92); text-decoration: underline; }

/* Smooth scroll + reduce motion */
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .lift, .btn-hero{ transition:none !important; }
}

/* Responsive */
@media (max-width: 992px){
  .nav-links{ display:none; }
  .brand{ min-width: 0; }

  .hero{ min-height: auto; }
  .hero-panel{ text-align: left; }
  .hero-divider{ margin-left: 0; }
  .hero p{ margin-left: 0; }
  .hero-actions{ justify-content:flex-start; }
}


/* Header */
.legal-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.legal-head h1{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.9px;
  line-height: 1.05;
  font-size: clamp(28px, 3.2vw, 44px);
}

.legal-subtitle{
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.6;
  max-width: 78ch;
}

.legal-meta{
  display:flex;
  align-items:flex-start;
  gap: 10px;
}

.legal-badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  white-space: nowrap;
}

/* Sections : pas de nouvelle section, juste un rythme visuel */
.legal-section{
  padding-top: 18px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.legal-section:first-of-type{
  border-top: 0;
  padding-top: 10px;
}

.legal-section h2{
  font-size: 15px;
  font-weight: 850;
  margin: 0 0 10px;
  color: rgba(255,255,255,.92);
  letter-spacing: .1px;
}

.legal-section p,
.legal-section li{
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.74);
  margin: 0 0 10px;
}

/* KV grid (éditeur + hébergement) : plus premium */
.legal-kv{
  display:grid;
  grid-template-columns: 190px 1fr;
  gap: 10px 18px;
  margin-top: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
}

.legal-kv b{
  color: rgba(255,255,255,.82);
  font-weight: 650;
  text-align: right;
  font-size: 13px;
  letter-spacing: .1px;
  padding-top: 1px;
}

.legal-kv span{
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
}

.legal-link{
  color: rgba(255,255,255,.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 1px;
}
.legal-link:hover{
  color: rgba(255,255,255,.98);
  border-bottom-color: rgba(255,255,255,.35);
}

/* Liste RGPD : plus clean */
.legal-section ul{
  margin: 10px 0 0;
  padding-left: 18px;
}
.legal-section ul li{
  margin: 6px 0;
}

/* Note RGPD */
.legal-note{
  margin-top: 12px !important;
  color: rgba(255,255,255,.60) !important;
  font-size: 13.4px !important;
}

/* Footer */
.legal-footer{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.56);
  font-size: 12.5px;
}

/* Responsive */
@media (max-width: 992px){
  .legal-header{
    flex-direction: column;
    gap: 10px;
  }
  .legal-badge{
    align-self:flex-start;
  }
  .legal-kv{
    grid-template-columns: 1fr;
  }
  .legal-kv b{
    text-align:left;
    opacity: .95;
    margin-top: 6px;
  }
}