:root {
  color-scheme: dark;
  --brand: #00e2a6;
  --brand-2: #1abc9c;
  --bg: #0b0f14;
  --bg-2:#0e141b;
  --text:#e8eef6;
  --muted:#9aa6b2;
  --line:#1c2430;
  --surface:#101722;
  --surface-2:#0f1926;
  --surface-3:#162234;
  --danger:#ff5c62;
  --warn:#ffc857;
  --ok:#6ee7a8;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.02) inset;
  --blur: 10px;

  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  --speed-1: 240ms;
  --speed-2: 420ms;

  --neo-bg: rgba(21, 28, 36, .85);
  --neo-border: rgba(0, 217, 255, .35);
  --neo-text: #dff8ff;
  --neo-accent-1: #00d9ff;
  --neo-accent-2: #22ffa8;



}



/* Navbar pilotée par variables (valeurs par défaut en haut de page) */
/* Effet background navbar après scroll */
/* Transition douce (facultatif) */






/* Base reset minimaliste */
*{box-sizing:border-box}
html,body{
  height:100%;
  /* overflow-x: hidden !important;  */
}
body{
  margin:0;background:radial-gradient(1200px 800px at 10% -10%, rgba(0,226,166,.06), transparent),
  linear-gradient(180deg,var(--bg),var(--bg-2) 60%);
  color:var(--text); font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
}

/* Layout helpers */
.container{width:min(1120px,90%);margin-inline:auto}
.section{padding: clamp(56px, 8vw, 120px) 0; position:relative}
.section--accent{background:linear-gradient(180deg,rgba(0,226,166,.08),rgba(0,226,166,.02))}
.stack{display:flex;flex-direction:column}
.stack-h{display:flex;align-items:center}
.center{align-items:center;text-align:center}
.gap-s{gap:var(--space-3)} .gap-m{gap:var(--space-4)} .gap-l{gap:var(--space-6)} .gap-xl{gap:var(--space-12)}
.w-100{width:100%}

/* Typography */
.h1{font:700 clamp(2rem, 3.8vw, 3.5rem)/1.1 "Poppins",sans-serif;margin:0 0 var(--space-4)}
.h2{font:700 clamp(1.6rem, 2.8vw, 2.4rem)/1.15 "Poppins",sans-serif;margin:0 0 var(--space-6)}
.h4{font:600 1.1rem/1.3 "Poppins",sans-serif;margin:.1rem 0 0}
.h5{font:600 1rem/1.3 "Poppins",sans-serif;margin:0}
.lead{font-size:1.1rem;color:var(--text);opacity:.92;max-width:62ch}
.muted{color:var(--muted)}
.text-gradient{
  background:linear-gradient(90deg,var(--brand),#67ffd1);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* Nav */
.nav{position:sticky;top:0;z-index:50;background:rgba(11,15,20,.55);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.nav a{color:var(--text);text-decoration:none;opacity:.92;transition:opacity var(--speed-1)}
.nav a:hover{opacity:1}
.brand{font:700 1rem "Poppins";letter-spacing:.08em}

.lock-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;          /* largeur fixe */
  height: 22px;         /* hauteur fixe */
  background: var(--brand); /* ton vert Turboprog */
  color: #fff;
  font-size: 0.9rem;    /* taille icône adaptée */
  border-radius: 50%;
  border: 2px solid var(--bg); /* petit contour propre */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,226,166,0.5);
}



/* Hero */
.hero .bg-ornament{
  position:absolute;inset:-10% -20% auto -20%;
  height:320px;background:radial-gradient(closest-side at 20% 40%, rgba(0,226,166,.12), transparent 70%);
  filter:blur(80px);opacity:.6;pointer-events:none;
  overflow: hidden;
  max-width: 100%;
}
.hero__visual{display:grid;gap:var(--space-8);align-content:start}

/* Cards */
.card{
  position:relative;background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01));
  border:1px solid var(--line); border-radius:var(--radius);
  box-shadow:var(--shadow); padding:var(--space-8);
}
.card--glass{background:rgba(15,23,36,.6);backdrop-filter:blur(var(--blur))}
.card--gradient{background:linear-gradient(180deg,rgba(0,226,166,.16),rgba(255,255,255,.02))}
.card--featured{outline:1px solid rgba(0,226,166,.35); box-shadow:0 0 0 2px rgba(0,226,166,.12) inset}
.card-session {
  position: absolute;
  bottom: 12px;
  right: 15px;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.8;
}


.kpi{min-width:280px}
.kpi__row{display:flex;justify-content:space-between;align-items:end}
.kpi__title{color:var(--muted);font-size:.9rem}
.kpi__value{font:700 2.2rem/1 "Poppins";letter-spacing:.3px}
.kpi__bar{height:6px;background:rgba(255,255,255,.06);border-radius:999px;margin:.75rem 0 0}
.kpi__bar span{display:block;height:100%;background:linear-gradient(90deg,var(--brand),#4af4c5);border-radius:999px}

/* Pills & badges */
.pill{display:inline-flex;align-items:center;gap:.5rem;padding:.35rem .7rem;border-radius:999px;
  background:rgba(255,255,255,.06);border:1px solid var(--line);color:var(--text);font:600 .75rem/1.2 "Inter"}
.pill--brand{background:rgba(0,226,166,.12);border-color:rgba(0,226,166,.35)}
.badge{font:600 .7rem "Inter";color:#06281f;background:linear-gradient(180deg,#9fffe4,#46f2c1);
  padding:.35rem .6rem;border-radius:8px}

/* Lists */
.bullets,.list{display:flex;flex-direction:column;gap:.4rem;margin:var(--space-4) 0 0;padding:0}
.bullets li,.list li{list-style:none;color:var(--text);opacity:.9}

/* Buttons */
.btn{
  --btn-bg:rgba(255,255,255,.06); --btn-fg: var(--text); --btn-bd: var(--line);
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  height:42px;padding:0 1rem;border-radius:12px;
  color:var(--btn-fg); background:var(--btn-bg); border:1px solid var(--btn-bd);
  text-decoration:none; font:600 .95rem "Inter"; transition:transform var(--speed-1),background var(--speed-1),border-color var(--speed-1);
  will-change:transform;
}
.btn:hover{transform:translateY(-1px)}
.btn--lg{height:50px;padding:0 1.25rem;border-radius:14px}
.btn--primary{--btn-bg: linear-gradient(180deg,var(--brand),#2ee1b5); --btn-fg:#05332a; --btn-bd:transparent}
.btn--ghost:hover{border-color:rgba(255,255,255,.24)}
.btn:active{transform:translateY(0)}

.link{color:#a8ffea;text-decoration:none;border-bottom:1px dashed rgba(168,255,234,.3)}
.link:hover{border-bottom-color:rgba(168,255,234,.7)}

/* Pricing */
.pricing .price{font:700 2rem "Poppins";margin:.25rem 0 1rem}
.pricing .list li{opacity:.96}

/* Skeleton */
.skeleton{height:140px;border-radius:12px;background:
  linear-gradient(90deg,rgba(255,255,255,.05),rgba(255,255,255,.12),rgba(255,255,255,.05));
  animation:shimmer 1.4s infinite linear;background-size:200% 100%;margin:.25rem 0 1rem}
@keyframes shimmer{to{background-position:-200% 0}}

/* Animations (révélations douces) */
.anim-fade-up{opacity:0;transform:translateY(16px);transition:opacity var(--speed-2) ease, transform var(--speed-2) ease; transition-delay:var(--d,0ms)}
.anim-scale-in{opacity:0;transform:scale(.96);transition:opacity var(--speed-2), transform var(--speed-2)}
.is-in.anim-fade-up{opacity:1;transform:none}
.is-in.anim-scale-in{opacity:1;transform:none}

/* Tilt léger à la souris */
.tilt{transform-style:preserve-3d; perspective:800px}
.tilt:hover{transform:rotateX(3deg) rotateY(-3deg); transition:transform 260ms ease}

/* CTA */
.section.section--accent .h2{max-width:28ch;margin:auto}

/* Footer */


/* Utilitaires */
.grid2>*:only-child{grid-column:1/-1}
@media (max-width:960px){ .grid2,.grid3{grid-template-columns:1fr} .nav__links{display:none} }
@media (prefers-reduced-motion: reduce){
  *{animation:none!important; transition:none!important}
}


/* --- PATCH BOOTSTRAP --- */
.tp-navbar .navbar-toggler-icon {
  background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(232,238,246,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.tp-navbar .navbar-nav .nav-link { color: var(--text)!important; }
.tp-navbar .navbar-nav .nav-link:hover { color: #fff!important; }


/* === PATCH GLOBAL DARK BOOTSTRAP === */

/* Force tout le texte en couleur claire */
body, p, li, h1, h2, h3, h4, h5, h6 {
  color: var(--text) !important;
  background: none !important;
}

/* Réécrit les variables Bootstrap pour le thème sombre */
:root, [data-theme="dark"] {
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text);
  --bs-heading-color: var(--text);
  --bs-card-bg: rgba(16,23,34,0.7);
  --bs-card-color: var(--text);
  --bs-link-color: #a8ffea;
  --bs-link-hover-color: #d2fff4;
  --bs-border-color: var(--line);
}

/* Corrige les composants qui se basent sur Bootstrap (card, bg-light...) */
.card,
.bg-light,
.text-body {
  background: rgba(16, 23, 34, 0.7) !important;
  color: var(--text) !important;
}

/* Badges Bootstrap */
.badge {
  color: #06281f;
  background: linear-gradient(180deg, #9fffe4, #46f2c1);
}

/* Lien de Bootstrap */
a, .nav-link {
  color: var(--bs-link-color) !important;
}
a:hover, .nav-link:hover {
  color: var(--bs-link-hover-color) !important;
}

/* Boutons */
.btn {
  color: var(--text);
  background-color: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}
.btn--primary {
  background: linear-gradient(180deg,var(--brand),#2ee1b5);
  color: #05332a !important;
  border: none;
}
.btn--ghost {
  background: rgba(255,255,255,.04);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
}


/* ACTIVE THEME SOMBRE BOOTSTRAP */
[data-bs-theme="dark"] {
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--text);
  --bs-heading-color: var(--text);
  --bs-card-bg: rgba(16,23,34,0.7);
  --bs-card-color: var(--text);
  --bs-link-color: #a8ffea;
  --bs-link-hover-color: #d2fff4;
  --bs-border-color: var(--line);
  --bs-secondary-color: var(--muted);
}

/* Force tous les titres et paragraphes à hériter */
h1, h2, h3, h4, h5, h6, p, li {
  color: var(--text) !important;
}

/* Les cartes et les boutons héritent du thème sombre */
.card {
  background-color: var(--bs-card-bg) !important;
  color: var(--text) !important;
  border: 1px solid var(--line);
}

.btn-primary {
  background: linear-gradient(180deg,var(--brand),#2ee1b5);
  color: #05332a !important;
  border: none;
}

.btn-outline-light, .btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-color: var(--line);
}
.btn-outline-light:hover, .btn--ghost:hover {
  background: rgba(255,255,255,.08);
}

/* Effet background navbar après scroll */



.card.pricing .mt-auto {
  margin-top: auto;
  padding-top: 3rem;
}

/* PATCH FORCE NAVBAR BACKGROUND */



/* Correction force les styles du footer */


/* === FOOTER TURBOPROG FULL CUSTOM === */
/* === FOOTER TURBOPROG === */
.tp-footer {
  padding: 40px 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.15));
  border-top: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  color: var(--text);
}

.tp-footer-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.tp-footer-badge {
  display: flex;
  justify-content: center;
}

.tp-footer-madeby {
  background: linear-gradient(90deg, var(--brand), #2ee1b5);
  color: #05332a;
  font-weight: 700;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: .5px;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem; /* espace entre icône et texte */
}
.tp-footer-madeby i {
  font-size: 0.95rem;
  display: inline-block;
}

.tp-footer-social {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0 0.8rem 0;
}

.tp-footer-social a {
  color: var(--text);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, color 0.25s ease;
}

.tp-footer-social a:hover {
  color: var(--brand);
  transform: scale(1.15) rotate(-3deg);
}



.tp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tp-footer-links a {
  color: var(--text);
  opacity: 0.85;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.tp-footer-links a:hover {
  opacity: 1;
  color: #fff;
}

.tp-footer-copy {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive : liens en colonne sur mobile */
@media (max-width: 640px) {
  .tp-footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

nav.tp-navbar {
    margin-top: 34px;
  background-color: transparent;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

nav.tp-navbar.tp-scrolled {
  background-color: rgba(11,15,20,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Section Mentions légales */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block h2 {
  background: linear-gradient(90deg, var(--brand), #2ee1b5);
  margin-bottom: 1rem;
}

.legal-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.9;
}

.legal .maj {
  margin-bottom: 140px;
}








/* PAGE CONTACT */
.tp-contact-form {
  background: rgba(16, 23, 34, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tp-contact-form .form-label {
  font-weight: 600;
  color: var(--text);
}

.tp-contact-form .form-control,
.tp-contact-form .form-select,
.tp-contact-form textarea {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--text);
}

.tp-contact-form .form-control:focus,
.tp-contact-form .form-select:focus,
.tp-contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(0,226,166,0.2);
  background-color: rgba(255,255,255,0.05);
}

.tp-contact-infos {
  font-size: 0.9rem;
}
.tp-contact-infos i {
  color: var(--brand);
}

.tp-contact-alert {
  border-radius: 0.75rem;
  font-size: 0.9rem;
}


/* BARRE D'ÉVÉNEMENT */
/* BARRE D'ÉVÉNEMENT */
/* CONTENEUR GLOBAL */
.tp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* BARRE D'ÉVÉNEMENT */
.tp-event-bar {
  background: linear-gradient(90deg, var(--brand), #2ee1b5);
  color: #05332a;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  text-align: center;
  margin: 0;
}

.tp-event-link {
  color: #05332a;
  font-weight: 700;
  margin-left: 1rem;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tp-event-link:hover {
  opacity: 0.8;
  transform: translateX(3px);
}

/* NAVBAR ATTACHÉE À LA BARRE */
.tp-navbar {
  background-color: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin: 0 !important;
  padding-top: 0.4rem; /* garde juste un peu de respiration si tu veux */
  padding-bottom: 0.4rem;
  border-top: none; /* au cas où il y a un trait */
}

/* ESPACE COMPENSATEUR (pour ne pas cacher le contenu) */
body {
  padding-top: calc(56px + 34px); /* hauteur nav + hauteur event bar */
}


/* WHY US - TABS */
.tp-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tp-tab {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.tp-tab.active {
  background: linear-gradient(90deg, var(--brand), #2ee1b5);
  color: #05332a;
  transform: translateX(4px);
}

.tp-tab:hover:not(.active) {
  background: rgba(255,255,255,.07);
}

.tp-tabs-content {
  background: rgba(16,23,34,0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.tp-tab-pane {
  display: none;
}

.tp-tab-pane.active {
  display: block;
}

.tp-tabs-cta {
  text-align: center;
}

.tp-tabs-cta p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.tp-tabs-cta .btn {
  margin-top: 0.5rem;
}


/* Boutique */
.tp-product-card {
  background: rgba(16,23,34,0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.tp-product-card:hover {
  transform: translateY(-3px);
}

.tp-product-body {
  padding: 1.5rem;
}

.tp-product-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.3rem 0;
}

.tp-product-stock {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.tp-product-stock.in-stock {
  color: #6ee7a8; /* vert dispo */
}
.tp-product-stock.out-of-stock {
  color: #ff5c62; /* rouge rupture */
}

.tp-product-desc {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Carousel custom pour qu'il s'intègre bien */
#productCarousel img {
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
  max-height: 450px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) drop-shadow(0 0 3px rgba(0,0,0,0.6));
}

.carousel {
  overflow: hidden;
}


/* SUBTILE FOR EVERY SECTION */

.section-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  opacity: 0.85;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}


/* Section Nos Valeurs */
.tp-value-card {
  background: rgba(16,23,34,0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tp-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.tp-value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--brand), #2ee1b5);
  color: #05332a;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.tp-value-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}


/* Carte Offre Prestige en ligne */
.prestige-card {
  background: rgba(16, 23, 34, 0.7);
  border: 1px solid rgba(0,226,166,0.3);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
  gap: 1rem;
  margin-right: -25px;
}

.prestige-card:hover {
  box-shadow: 0 6px 18px rgba(0, 226, 166, 0.25);
}

.prestige-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.prestige-text {
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.85;
  max-width: 500px;
  margin-top: 5px;
  margin-left: 5px;
}

.prestige-right .btn {
  white-space: nowrap;
}

/* === TABLEAU DE PRIX TURBOPROG === */
.pricing-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
}

.pricing-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  background: rgba(16, 23, 34, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.pricing-table th {
  background: linear-gradient(90deg, rgba(0,226,166,0.15), rgba(0,226,166,0.05));
  color: var(--text);
  font-weight: 700;
  padding: 1rem;
  font-size: 1rem;
}

.pricing-table td {
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text);
}

.pricing-table tr:hover {
  background: rgba(255,255,255,0.03);
}

.check {
  color: #6ee7a8;
  font-weight: bold;
  font-size: 1.1rem;
}

.cross {
  color: #ff5c62;
  font-weight: bold;
  font-size: 1.1rem;
}

.info {
  color: var(--muted);
  font-weight: 600;
}

.sig-text {
  font-weight: bold;
  font-size: italic;
  background: linear-gradient(90deg, #3498db, #fff, #e74c3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prestige-text {
  font-weight: bold;
  color: gold;
}

.prestige-star {
  color: red;
  font-size: 0.9rem;
  margin-left: 2px;
}

/* === LÉGENDE TABLEAU DE PRIX === */
.pricing-legend {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.85;
}

.pricing-legend .legend-item {
  margin: 0 0.5rem;
  display: inline-block;
}

.pricing-legend strong {
  color: var(--text);
  font-weight: 700;
}


/* === SECTION FORMATIONS === */
/* === FORMATIONS GRID === */
.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.formation-card {
  background: rgba(16, 23, 34, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.formation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.formation-domain {
  font-size: 0.75rem;
  font-weight: 600;
  color: #a8ffea;
  background: rgba(0, 226, 166, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.formation-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.formation-text {
  font-size: 0.95rem;
  opacity: 0.85;
  flex-grow: 1;
  margin-bottom: 1rem;
}


/* === LÉGENDE FORMATIONS === */
.formations-legend {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.75;
}

/* === DROPDOWN NAV === */
.tp-dropdown {
  background-color: rgba(16,23,34,0.95);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.tp-dropdown .dropdown-item {
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.tp-dropdown .dropdown-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}


/* Style pour les coches et croix du tableau comparatif */
.pricing-table .check {
  color: #4ade80; /* vert moderne */
  font-weight: bold;
  font-size: 1.1rem;
}

.pricing-table .cross {
  color: #ef4444; /* rouge moderne */
  font-weight: bold;
  font-size: 1.1rem;
}
.pricing-table .line {
  color: orange; /* rouge moderne */
  font-weight: bold;
  font-size: 1.1rem;
}


/* === CARDS SERVICES === */
.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.service-title {
  font: 700 1.3rem "Poppins", sans-serif;
  margin-bottom: 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-img {
  max-width: 300px;
  border: 2px solid;
  border-radius: 20px;
  margin: 0 auto 1.5rem auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.service-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}



.malouai-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .9rem;
  background: linear-gradient(135deg, rgba(16,26,38,.8), rgba(9,14,20,.9));
  border: 1px solid rgba(110,168,254,.25);
  border-radius: 999px;
  color: #a6c7ff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  user-select: none;
  box-shadow: inset 0 0 6px rgba(110,168,254,.08),
              0 0 8px rgba(0,150,255,0.05);
  transition: all .3s ease;
  backdrop-filter: blur(6px);
}
.malouai-badge i {
  color: #00b6ff;
  font-size: 1rem;
}
.malouai-badge:hover {
  border-color: rgba(0,210,255,.5);
  color: #d4f2ff;
  box-shadow: 0 0 10px rgba(0,200,255,.25), inset 0 0 10px rgba(0,200,255,.1);
  transform: translateY(-1px);
}

.ai-note{
  display:block;
  margin-top:.25rem;
  font-size:.82rem;
  font-weight:500;
  letter-spacing:.02em;
  color: rgba(166,199,255,.55); /* bleu froid très discret */
  text-transform: none;         /* reste sobre, pas en capitales */
  user-select:none;
}
.hero .ai-note:hover{
  color: rgba(212,242,255,.75);
}
@media (max-width:576px){
  .ai-note{ font-size:.78rem; }
}


/* ===== Sommaire : flèche custom dans le titre ===== */

/* On masque le chevron natif */
.toc-summary::-webkit-details-marker { display:none; }
.toc-summary { list-style: none; }

/* Style du header de l'accordéon */
.toc-summary{
  position: relative;
  cursor: pointer;
  padding: .9rem 1rem .9rem 2.25rem; /* place pour la flèche */
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--text);
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-radius: 10px;
  transition: color .25s ease, background .25s ease;
  outline: none;
  user-select: none;
}

/* Flèche (chevron) avant le texte — teintée sur ton thème */
.toc-summary::before{
  content:"";
  position:absolute; left: .9rem; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid rgba(166,199,255,.9);
  border-bottom: 2px solid rgba(166,199,255,.9);
  transform: translateY(-50%) rotate(-45deg);  /* > */
  transition: transform .25s ease, border-color .25s ease, filter .25s ease;
  filter: drop-shadow(0 0 4px rgba(110,168,254,.25));
}

/* État ouvert : flèche vers le bas */
.toc-collapsible[open] > .toc-summary::before{
  transform: translateY(-50%) rotate(45deg); /* v */
  border-right-color: #2ee1b5;
  border-bottom-color: #2ee1b5;
  filter: drop-shadow(0 0 6px rgba(46,225,181,.35));
}

/* Hover/focus accessibles */
.toc-summary:hover{ color:#e8f4ff; }
.toc-summary:focus-visible{
  box-shadow: 0 0 0 2px rgba(46,225,181,.35);
}

/* Desktop : on cache le summary (tu gardes ton H4 sticky) */
@media (min-width: 993px){
  .toc-summary{ display:none; }
}

/* Mobile : nav du sommaire, une fois ouvert */
@media (max-width: 992px){
  .toc-collapsible nav{
    padding: .25rem .5rem .8rem;
  }
}


/* Badge PACE — fin, lisible, hérite des couleurs */
/* Base: plus lisible, plus “dense” */
.badge-pace {
  --pace-color: #7a5bff;                 /* couleur principale */
  --pace-bg: color-mix(in oklab, var(--pace-color) 12%, transparent);
  --pace-border: color-mix(in oklab, var(--pace-color) 70%, #222 30%);
  --pace-glow: color-mix(in oklab, var(--pace-color) 45%, white 10%);
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  color: var(--pace-color);
  background: var(--pace-bg);
  border: 1.25px solid var(--pace-border);
  border-radius: 999px;
  padding: .28rem .62rem;
  font-size: .86rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  backdrop-filter: saturate(1.15) blur(.5px);
}

/* Icône: plus visible + glow discret */
.badge-pace .icon-pace {
  width: 2.0em;                  /* un poil plus grande */
  height: 2.0em;
  display: inline-block;
  translate: 0 .5px;             /* align typographique */
  filter: drop-shadow(0 0 2px var(--pace-glow));
  /* Renforce le trait sans toucher au sprite */
  stroke: currentColor;
  stroke-width: 2.25;            /* override l’attribut du symbol */
  vector-effect: non-scaling-stroke;
}

/* Variante : “solid” (pill rempli, texte blanc) */
.badge-pace--solid {
  color: #fff;
  background: linear-gradient(180deg,
              color-mix(in oklab, var(--pace-color) 90%, #fff 0%) 0%,
              color-mix(in oklab, var(--pace-color) 92%, #000 12%) 100%);
  border-color: color-mix(in oklab, var(--pace-color) 85%, #000 20%);
  box-shadow:
    0 6px 16px -10px color-mix(in oklab, var(--pace-color) 60%, transparent),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.badge-pace--solid .icon-pace {
  filter: drop-shadow(0 0 2px rgba(0,0,0,.45));
}

/* Variante : “contrast” (outline net + halo) */
.badge-pace--contrast {
  background: transparent;
  border-color: currentColor;
  box-shadow:
    0 0 0 2px color-mix(in oklab, var(--pace-color) 20%, transparent) inset,
    0 6px 18px -12px color-mix(in oklab, var(--pace-color) 60%, transparent);
}

/* Variante : “brand” (pour la carte featured) */
.card--featured .badge-pace {
  --pace-color: #6a4cff; /* un ton plus punchy */
}

/* Option : micro-hover sobre */


/* Option : compact si tu le veux plus fin */
.badge-pace--xs {
  font-size: .8rem;
  padding: .22rem .5rem;
}

/* Harmonisation dans la liste des features */
.pricing .list li {
 
  align-items: center;
  gap: .45rem;
}

/* Variante marque sur la carte "featured" (peut suivre ton thème brand) */
.card--featured .badge-pace {
  --pace-color: #7a5bff;              /* un ton brand plus punchy */
  border-width: 1.2px;
}

/* Option : texte explicatif (i) à droite si tu veux garder l’info button */
.feature-note {
  color: var(--bs-secondary-color, #8a8a8a);
  margin-left: .25rem;
  font-size: .9em;
}

#pricing-ve {
  top: 0;
}


#pricing-ve .pricing-card{
  --bd: rgba(166,199,255,.14);
  --bg: linear-gradient(180deg, rgba(16,23,34,.82), rgba(10,16,26,.78));
  --txt: #eaf6ff;
  --muted: rgba(220,236,255,.8);
  --brand: var(--brand, #00e2a6);
  max-width: 720px;
  margin-inline: auto;
  border: 1px solid var(--bd);
  border-radius: 16px;
  background: var(--bg);
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.02);
}

/* #pricing-ve .pc-icon{
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bd);
  margin-bottom: 1rem;
}
#pricing-ve .cve-electric-icon{
  width: 36px; height: 36px; display:block;
  filter: drop-shadow(0 0 8px rgba(0,150,255,.18));
} */

#pricing-ve .pc-title{
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.2rem, 1.05rem + .6vw, 1.6rem);
  color: var(--txt);
}
#pricing-ve .pc-sub{
  margin: .35rem 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Prix */
#pricing-ve .pc-price{
  display: flex; align-items: baseline; gap: .5rem;
  margin: .2rem 0 1rem;
  color: #e7f7ff;
}
#pricing-ve .pc-price__val{
  font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 900; letter-spacing: .2px; line-height: 1;
}
#pricing-ve .pc-price__cur{
  font-weight: 800; color: #bfeaff; opacity: .95; font-size: .98rem;
}
#pricing-ve .pc-price__note{
  margin-left: auto; font-size: .9rem; color: rgba(220,236,255,.75);
}

/* Features sobres */
#pricing-ve .pc-features{
  list-style: none; margin: .4rem 0 1.1rem; padding: 0;
  display: grid; gap: .5rem;
}
#pricing-ve .pc-features li{
  display: flex; align-items: center; gap: .55rem;
  color: var(--txt);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: .6rem .75rem;
  transition: background .2s ease, border-color .2s ease, transform .18s ease;
}
#pricing-ve .pc-features li:hover{
  background: rgba(0,226,166,.06);
  border-color: var(--brand);
  transform: translateY(-1px);
}
#pricing-ve .pc-features i{
  color: #2ee1b5;
  font-size: 1.05rem;
}

/* CTA */
#pricing-ve .pc-cta{
  display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
}
#pricing-ve .pc-btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.15rem; border-radius: 12px;
  background: linear-gradient(180deg, var(--brand), #2ee1b5);
  color: #05332a; font-weight: 800; text-decoration: none;
  border: 1px solid rgba(0,226,166,.4);
  box-shadow: 0 6px 18px rgba(0,226,166,.18), inset 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
#pricing-ve .pc-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,226,166,.25);
  border-color: rgba(0,226,166,.55);
}
#pricing-ve .pc-link{
  color: #a6c7ff; text-decoration: none; font-weight: 600;
  border-bottom: 1px dashed rgba(166,199,255,.3);
  padding-bottom: 2px;
}
#pricing-ve .pc-link:hover{
  color: #d8e7ff; border-bottom-color: #2ee1b5;
}

/* Responsive */
@media (max-width: 576px){
  #pricing-ve .pricing-card{ padding: 1.2rem; }
  #pricing-ve .pc-price__note{ flex-basis: 100%; margin-left: 0; margin-top: .2rem; }
}

#pricing-ve .pc-headline{
  display:flex; align-items:center; gap:.8rem;
  margin-bottom:.35rem;
}

#pricing-ve .pc-icon{
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(166,199,255,.14);
  margin: 0;                /* tu avais déjà la règle plus bas */
  position: relative;
  overflow: hidden;

  /* fond vert translucide */
  background: rgba(0, 226, 166, .10);
  box-shadow:
    0 10px 26px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(255,255,255,.03);
}

/* glow vert doux derrière */
#pricing-ve .pc-icon::before{
  content: "";
  position: absolute;
  inset: -18px;
  background: radial-gradient(circle at 35% 30%,
    rgba(0,226,166,.40),
    rgba(0,226,166,0) 60%);
  filter: blur(6px);
  opacity: .85;
  pointer-events: none;
}

/* image transparente centrée, sans déformation */
#pricing-ve .pc-iconImg{
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;

  /* petit relief */
  filter:
    drop-shadow(0 10px 14px rgba(0,0,0,.35))
    drop-shadow(0 0 10px rgba(0,226,166,.22));
}

/* option si tu veux un peu plus grand sur desktop */
@media (min-width: 992px){
  #pricing-ve .pc-iconImg{
    width: 58px;
    height: 58px;
  }
}
#pricing-ve .pc-icon{ margin:0; }      /* enlève le margin-bottom précédent */
#pricing-ve .pc-sub{ margin:.1rem 0 1rem; line-height:1.55; } /* sous-titre sous l'ensemble */
@media (max-width:576px){
  #pricing-ve .pc-headline{ gap:.6rem; }
}

.pc-note{
  margin-top:20px;
  font-size:.9rem;
  color: rgba(220,236,255,.75);
}

.malouai-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .9rem;
  background: linear-gradient(135deg, rgba(16,26,38,.8), rgba(9,14,20,.9));
  border: 1px solid rgba(110,168,254,.25);
  border-radius: 999px;
  color: #a6c7ff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  user-select: none;
  box-shadow: inset 0 0 6px rgba(110,168,254,.08),
              0 0 8px rgba(0,150,255,0.05);
  transition: all .3s ease;
  backdrop-filter: blur(6px);
}
.malouai-badge i {
  color: #00b6ff;
  font-size: 1rem;
}
.malouai-badge:hover {
  border-color: rgba(0,210,255,.5);
  color: #d4f2ff;
  box-shadow: 0 0 10px rgba(0,200,255,.25), inset 0 0 10px rgba(0,200,255,.1);
  transform: translateY(-1px);
}

/* Wrapper en colonne avec centrage global */
.tp-footer .tp-footer-wrapper{
  display:flex; flex-direction:column; align-items:center; gap:12px;
}

/* Badges centrés */
.tp-footer-badges{
  display:flex; align-items:center; justify-content:center; gap:12px;
}

/* Séparateur discret entre badges */
.tp-footer-sep{
  width:1px; height:18px; background:rgba(255,255,255,.12); display:inline-block;
}

/* Made by = ton badge vert déjà stylé ; on force l’inline-flex si besoin */
.badge-madeby{ display:inline-flex; align-items:center; }

/* Badge Malou (déjà stylisé), on garantit l’alignement */
.malouai-badge{ display:inline-flex; align-items:center; gap:6px; }

/* Réseaux centrés sous les badges */
.tp-footer-social--center{
  display:flex; align-items:center; justify-content:center; gap:12px;
}
.tp-footer-social--center a{
  color:#cfd6e3; opacity:.9; transition:opacity .2s, transform .2s;
}


/* Liens légaux et copyright déjà centrés par héritage */
.tp-footer-links{
  display:flex; gap:18px; flex-wrap:wrap; justify-content:center; padding:0; margin:8px 0 0;
}
.tp-footer-links li{ list-style:none; }

/* Responsive : on retire le séparateur pour éviter la casse sur mobile */
@media (max-width: 640px){
  .tp-footer-badges{ gap:10px; flex-wrap:wrap; }
  .tp-footer-sep{ display:none; }
}


.badge-madeby--neo{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 16px; border-radius:999px;
  color:var(--neo-text);
  background:
    radial-gradient(120% 120% at 10% 0%, rgba(0,217,255,.18), transparent 55%),
    var(--neo-bg);
  border:1px solid var(--neo-border);
  box-shadow:
    inset 0 0 12px rgba(0,217,255,.10),
    0 2px 14px rgba(0,0,0,.35);
  letter-spacing:.4px; font-weight:600;
  position:relative; overflow:hidden; cursor:default;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Icône + texte */
.badge-madeby--simple{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 14px; border-radius:999px;
  color:#e6f6ff; text-decoration:none; font-weight:600; letter-spacing:.3px;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(0,217,255,.28);
  box-shadow:inset 0 0 6px rgba(0,217,255,.08);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.badge-madeby__icon{
  display:block; width:18px; height:18px; object-fit:contain;
  filter:drop-shadow(0 0 4px rgba(0,217,255,.2));
}

.badge-madeby--simple:hover,
.badge-madeby--simple:focus-visible{
  transform:translateY(-1px);
  background:rgba(0,217,255,.08);
  border-color:rgba(0,217,255,.5);
  box-shadow:0 6px 18px rgba(0,217,255,.12), inset 0 0 8px rgba(0,217,255,.12);
  outline:none;
}

@media (prefers-reduced-motion: reduce){
  .badge-madeby--simple{ transition:none; }
}

.tp-footer-badges{
  display:flex; align-items:center; justify-content:center;
  gap:12px; flex-wrap:nowrap; /* empêche le saut de ligne du séparateur */
}

/* ——— Badges : même hauteur visuelle + reset des marges internes éventuelles ——— */
.tp-footer-badges .badge-madeby--simple,
.tp-footer-badges .malouai-badge{
  display:inline-flex; align-items:center; gap:10px;
  min-height:38px; /* même hauteur */
  padding:8px 14px; /* homogène */
  line-height:1;   /* évite le décalage vertical */
  margin:0 !important;
}

/* Harmonise l’icône image du badge TURBOPROG */
.badge-madeby__icon{ width:18px; height:18px; object-fit:contain; }

/* ——— Séparateur : pleine hauteur de la rangée, centré ——— */
.tp-footer-sep{
  align-self:stretch; /* hauteur = hauteur de la ligne */
  width:1px; background:rgba(255,255,255,.12);
  margin:0 10px;
}

/* ——— Social en dessous : inchangé, juste centré ——— */
.tp-footer-social--center{
  display:flex; align-items:center; justify-content:center; gap:12px;
}

/* Mobile : on laisse wrap + on masque le séparateur pour éviter les sauts moches */
@media (max-width:640px){
  .tp-footer-badges{ flex-wrap:wrap; gap:10px; }
  .tp-footer-sep{ display:none; }
}


.tp-dropdown .dropdown-item[href="/info"]{
  position:relative; padding-right:28px;
}
.tp-dropdown .dropdown-item[href="/info"]::after{
  content:""; position:absolute; right:10px; top:50%; transform:translateY(-50%);
  width:8px; height:8px; border-radius:50%;
  background: var(--tp-red-intense, #ff3b3b);
  animation: tp-pulse 1.6s ease-in-out infinite;
}

/* Accessibilité (si pas déjà présent, style Bootstrap-like) */
.visually-hidden{
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Point rouge animé pour l'item */
.dropdown-item.has-indicator{
  position: relative;
  padding-right: 28px; /* espace pour le point à droite */
}

.dropdown-item .tp-dot{
  --dot: var(--tp-red-intense, #ff3b3b);
  position: absolute;
  right: 10px;               /* ajuste si besoin selon ton dropdown */
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 0 8px rgba(255, 0, 34, .65);
}

/* Effet “pulse” doux */
.tp-dot--pulse{
  animation: tp-pulse 1.6s ease-in-out infinite;
}
@keyframes tp-pulse{
  0%   { box-shadow: 0 0 0 0 rgba(255,0,34,.6);    }
  70%  { box-shadow: 0 0 0 8px rgba(255,0,34,0);   }
  100% { box-shadow: 0 0 0 0 rgba(255,0,34,0);     }
}

 .cve-infobar{
    
    padding: clamp(18px, 3vw, 26px) 0;
  }
  .cve-infobar__wrap{
    width: min(1100px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 14px;
    align-items: center;
    background: linear-gradient(180deg, var(--tp-panel) 0%, var(--tp-panel-2) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--tp-radius);
    box-shadow: var(--tp-shadow);
    padding: clamp(12px, 1.6vw, 18px);
  }

  .cve-infobar__eyebrow{
    display:inline-block;
    padding: 6px 10px;
    background: rgba(58,167,255,.12);
    color: var(--tp-accent);
    border: 1px solid rgba(58,167,255,.25);
    border-radius: 999px;
    font-size: 12px; letter-spacing:.08em; text-transform: uppercase;
    margin-bottom: 15px;
  }
  .cve-infobar__title{
    margin: 0 0 6px 0;
    font-size: clamp(18px, 2.2vw, 24px);
    letter-spacing: .2px;
    background: var(--tp-grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .cve-infobar__lead{
    margin: 0; color: var(--tp-text-dim); line-height: 1.6;
    font-size: clamp(14px, 1.2vw, 15.5px);
  }

  .cve-infobar__center{
    text-align: center;
  }

  /* Bouton */
  .cve-infobar__btn{
    display:inline-block;
    background: var(--tp-grad);
    color: #0b0f14;
    text-decoration: none;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(58,167,255,.35);
    white-space: nowrap;
  }
  .cve-infobar__btn:focus-visible{
    outline: 2px solid rgba(58,167,255,.8);
    outline-offset: 2px;
  }

  /* Responsive */
  @media (max-width: 980px){
    .cve-infobar__wrap{
      grid-template-columns: 1fr;
      text-align: left;
    }
    .cve-infobar__center{ text-align:left; }
    .cve-infobar__right{ text-align:left; }
  }


 .badge-exclusive {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #ff3366, #ff8a3c);
  color: #fff;
  box-shadow: 0 0 6px rgba(255, 80, 80, 0.6);
  animation: badgePulse 1.8s ease-in-out infinite;
  pointer-events: none;
  margin-left: 10px;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(255, 80, 80, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 100, 80, 0.9);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(255, 80, 80, 0.4);
  }
}


.badge-exclusive-laser {
  font-size: 0.63rem;
  padding: 0.12rem 0.55rem;
  border-radius: 6px;
  background: rgba(0, 200, 255, 0.15);
  color: #00c8ff;
  border: 1px solid rgba(0, 200, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 8px rgba(0, 200, 255, 0.3);
  animation: laserGlow 2s ease-in-out infinite;
  margin-left: 10px;
}

@keyframes laserGlow {
  0%   { box-shadow: inset 0 0 6px rgba(0, 200, 255, 0.2); }
  50%  { box-shadow: inset 0 0 14px rgba(0, 200, 255, 0.45); }
  100% { box-shadow: inset 0 0 6px rgba(0, 200, 255, 0.2); }
}

/* === Tooltip CAPA premium === */

.capa-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.capa-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: rgba(255,255,255,0.85);
  background: linear-gradient(145deg, rgba(90,60,200,0.8), rgba(120,160,255,0.8));
  box-shadow: 0 0 10px rgba(120,160,255,0.35);
  user-select: none;
}

/* Tooltip box */
.capa-tooltip-box {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 320px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(20,20,30,0.95);
  border: 1px solid rgba(145,221,251,0.25);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.45;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

/* Petite flèche */
.capa-tooltip-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: rgba(20,20,30,0.95) transparent transparent transparent;
}

/* Hover */
.capa-tooltip:hover .capa-tooltip-box {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Titre */
.capa-tooltip-box strong {
  color: #cbbcff;
  font-weight: 600;
}


.btn-horizon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(40,40,60,0.9), rgba(20,20,30,0.9));
  border: 1px solid rgba(145,221,251,0.25);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
}

/* Texte */
.btn-horizon .btn-text {
  position: relative;
  z-index: 2;
}

/* Icône cadenas */
.btn-horizon .lock {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-horizon .lock svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease, stroke 0.35s ease;
}

/* Effet lumière */
.btn-horizon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(145,221,251,0.15),
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

/* Hover */
.btn-horizon:hover::before {
  transform: translateX(120%);
}

.btn-horizon:hover .lock svg {
  transform: rotate(-8deg);
  stroke: rgba(145,221,251,0.9);
}

/* État disabled maîtrisé */
.btn-horizon:disabled {
  opacity: 0.85;
}
.pc-badge.pc-badge--dev {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;

  /* On annule le centrage global éventuel */
  left: auto;
  transform: none;
  margin: 0;

  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.45);
  color: #ffe9a6;
}

.pc-badge-dev{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 999px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.35);
  color: #3b82f6;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  user-select: none;
}

.pc-badge-dev__text{
  line-height: 1;
}


/* Headline Horizon alignée */
.pc-headline--horizon {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* SVG un peu plus grand */
.icon-shield {
  width: 38px;
  height: 38px;
}

/* Badge développement plus présent */
.pc-badge-dev--inline {
  margin-left: auto; /* pousse le badge à droite */
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* Loader plus grand pour équilibrer */
.pc-badge-dev--inline .loader {
  transform: scale(1);
  margin: 0;
}


.pc-badge-dev__icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.pc-badge-dev__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.analyze svg path.stick {
  transform: translate(0);
  animation: stick 2s ease infinite;
  /* Change wand color */
}

.analyze svg path.star-1 {
  fill: #ff4500; /* OrangeRed color */
  animation: sparkles 2s ease infinite, scaleStars 2s ease infinite,
    colorChange 2s ease infinite;
  animation-delay: 150ms;
}

.analyze svg path.star-2 {
  fill: #00ff00; /* Lime color */
  animation: sparkles 2s ease infinite, scaleStars 2s ease infinite,
    colorChange 2s ease infinite;
}

.board {
  animation: bounce 2s ease infinite;
}

@keyframes sparkles {
  0% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes stick {
  0% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  25% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  50% {
    transform: translate3d(3px, -2px, 0) rotate(8deg);
  }
  75% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@keyframes scaleStars {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes colorChange {
  0% {
    fill: #ff4500; /* OrangeRed */
  }
  25% {
    fill: #ffd700; /* Gold */
  }
  50% {
    fill: #00ff00; /* Lime */
  }
  75% {
    fill: #1e90ff; /* DodgerBlue */
  }
  100% {
    fill: #ff4500; /* OrangeRed */
  }
}


.pricing-info {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 10px;
  margin: 0 auto 10px;
  padding: 10px 18px;

  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);

  background: linear-gradient(
    to right,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;

  backdrop-filter: blur(6px);
}

.pricing-info__icon {
  width: 22px;
  height: 22px;
  color: #5dffb2;
  filter: drop-shadow(0 0 6px rgba(93,255,178,.55));
}


.pricing-info-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pricing-info__link {
  margin-left: 12px;
  padding: 4px 10px;
  border-radius: 999px;

  font-size: 0.8rem;
  font-weight: 500;

  color: #5dffb2;
  background: rgba(93,255,178,0.12);
  border: 1px solid rgba(93,255,178,0.35);

  text-decoration: none;
}

.pricing-info__link:hover {
  background: rgba(93,255,178,0.2);
}


.tp-card {
    --bg-color: #111;
  background: rgba(17, 17, 17, 0.85);
  padding: 1rem 2rem;
  border-radius: 16px;

  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(25, 229, 138, 0.12),
    0 0 0 1px rgba(25, 229, 138, 0.18);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 40px;
  margin-top: 20px;
}

.tp-loader {
  color: rgb(124, 124, 124);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 25px;
  box-sizing: content-box;
  height: 40px;
  padding: 10px 10px;
  display: flex;
  border-radius: 8px;
}

.tp-words {
  overflow: hidden;
  position: relative;
}

.tp-words::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--bg-color) 10%,
    transparent 30%,
    transparent 70%,
    var(--bg-color) 90%
  );
  z-index: 20;
}

.word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #19e58a; /* vert TURBOPROG */
  animation: spin_4991 4s infinite;
}

@keyframes spin_4991 {
  10% { transform: translateY(-102%); }
  25% { transform: translateY(-100%); }
  35% { transform: translateY(-202%); }
  50% { transform: translateY(-200%); }
  60% { transform: translateY(-302%); }
  75% { transform: translateY(-300%); }
  85% { transform: translateY(-402%); }
  100% { transform: translateY(-400%); }
}

.center-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== SECTION – Indice CVE (aperçu léger, sombre + vert TURBOPROG) ===== */
.cveLite{
  position:relative;
  padding:64px 18px;
  overflow:hidden;
  background:
    radial-gradient(900px 420px at 16% 26%, rgba(20,255,152,.075), transparent 62%),
    radial-gradient(900px 420px at 86% 12%, rgba(20,255,152,.055), transparent 58%),
    linear-gradient(180deg, rgba(8,10,12,.00), rgba(8,10,12,.28));
}

.cveLite__wrap{
  max-width:1100px;
  margin:0 auto;
}

.cveLite__top{
  margin-bottom:18px;
}

.cveLite__pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(20,255,152,.16);
  background:rgba(10,12,14,.42);
  color:rgba(220,255,240,.82);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  box-shadow:0 0 0 1px rgba(0,0,0,.28) inset;
}

.cveLite__title{
  margin:12px 0 6px;
  font-size:28px;
  line-height:1.15;
  color:rgba(235,255,248,.95);
}

.cveLite__sub{
  margin:0;
  max-width:70ch;
  color:rgba(235,255,248,.70);
  font-size:14px;
  line-height:1.55;
}

.cveLite__grid{
  display:grid;
  grid-template-columns: 1.35fr .95fr;
  gap:14px;
  margin-top:18px;
}

.cveLite__card{
  position:relative;
  border-radius:18px;
  background:rgba(10,12,14,.54);
  border:1px solid rgba(20,255,152,.14);
  box-shadow:
    0 14px 34px rgba(0,0,0,.36),
    0 0 0 1px rgba(0,0,0,.26) inset;
  backdrop-filter: blur(10px);
  overflow:hidden;
}

.cveLite__card::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(560px 280px at 18% 22%, rgba(20,255,152,.10), transparent 62%),
    radial-gradient(680px 320px at 86% 12%, rgba(20,255,152,.06), transparent 58%);
}

.cveLite__card--main{ padding:18px; }

.cveLite__mainHead{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
}

.cveLite__badge{
  width:86px;
  height:86px;
  border-radius:18px;
  border:1px solid rgba(20,255,152,.20);
  background:linear-gradient(180deg, rgba(20,255,152,.065), rgba(10,12,14,.30));
  box-shadow:
    0 10px 22px rgba(0,0,0,.34),
    0 0 0 1px rgba(0,0,0,.32) inset;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.cveLite__grade{
  font-size:40px;
  line-height:1;
  font-weight:850;
  color:rgba(235,255,248,.92);
  text-shadow:0 0 12px rgba(20,255,152,.16);
}

.cveLite__to{
  margin-top:4px;
  font-size:12px;
  letter-spacing:.08em;
  color:rgba(220,255,240,.68);
}

.cveLite__mainText{ min-width:0; }

.cveLite__over{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(220,255,240,.70);
}

.cveLite__h{
  margin-top:6px;
  font-size:18px;
  font-weight:650;
  color:rgba(235,255,248,.92);
}

.cveLite__chips{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.cveLite__chip{
  font-size:12px;
  color:rgba(235,255,248,.72);
  padding:7px 10px;
  border-radius:999px;
  background:rgba(8,10,12,.40);
  border:1px solid rgba(255,255,255,.08);
}

.cveLite__ctaWrap{
  position:relative;
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.cveLite__btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  background:rgba(8,10,12,.44);
  border:1px solid rgba(20,255,152,.28);
  color:rgba(220,255,240,.92);
  font-weight:700;
  box-shadow:
    0 12px 26px rgba(0,0,0,.33),
    0 0 0 1px rgba(0,0,0,.26) inset;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}

.cveLite__btn:hover{
  transform:translateY(-1px);
  background:rgba(8,10,12,.54);
  border-color:rgba(20,255,152,.40);
}

.cveLite__arrow{
  font-size:20px;
  line-height:1;
  color:rgba(20,255,152,.85);
}

.cveLite__hint{
  font-size:12px;
  color:rgba(235,255,248,.60);
}

/* Scale */
.cveLite__card--scale{ padding:14px; }

.cveLite__row{
  position:relative;
  display:grid;
  grid-template-columns: 22px 1fr 10px;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:14px;
  background:rgba(8,10,12,.32);
  border:1px solid rgba(255,255,255,.06);
  margin-bottom:8px;
}

.cveLite__row--e{
  background:rgba(255,72,72,.05);
  border-color:rgba(255,72,72,.18);
}

.cveLite__k{ font-weight:800; color:rgba(235,255,248,.90); }
.cveLite__lab{ color:rgba(235,255,248,.70); font-size:13px; line-height:1.25; }

.cveLite__dot{ width:10px; height:10px; border-radius:999px; }
.cveLite__dot--a{ background:rgb(20,255,152); }
.cveLite__dot--b{ background:rgba(20,255,152,.75); }
.cveLite__dot--c{ background:rgba(255,214,102,.90); }
.cveLite__dot--d{ background:rgba(255,154,72,.92); }
.cveLite__dot--e{ background:rgba(255,72,72,.95); }

/* Responsive */
@media (max-width: 920px){
  .cveLite__grid{ grid-template-columns:1fr; }
  .cveLite__title{ font-size:24px; }
}
@media (max-width: 520px){
  .cveLite{ padding:56px 16px; }
  .cveLite__badge{ width:82px; height:82px; }
  .cveLite__h{ font-size:17px; }
}


/* ===== Dashboard / Espace membre (sobre + "à venir") ===== */
.section-dashboard .lead{
  margin-top: 10px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.section-dashboard .muted{
  color: rgba(255,255,255,.72);
}



.dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.dot--amber{
  background: #ffb020;
  box-shadow: 0 0 0 4px rgba(255,176,32,.12);
}

.info-line{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.info-icon{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  line-height: 1;
  margin-top: 2px;
}

.info-text{
  color: rgba(255,255,255,.74);
  font-size: .92rem;
  line-height: 1.35;
}

/* Carte preview */
.card--preview{
  padding: 18px;
}

.card--preview .card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .82rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  white-space: nowrap;
}

.chip--soon{
  border-color: rgba(255,176,32,.22);
  background: rgba(255,176,32,.08);
}

.chip-ring{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255,176,32,.95);
  box-shadow: 0 0 0 4px rgba(255,176,32,.14);
}

/* Aperçu "skeleton" propre, sans boutons */
.preview-frame{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  padding: 14px;
  overflow: hidden;
  position: relative;
}

.preview-frame::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 200px at 30% 10%, rgba(0,160,255,.10), transparent 60%),
              radial-gradient(500px 180px at 80% 30%, rgba(0,255,200,.06), transparent 65%);
  pointer-events:none;
}

.preview-row{
  display:flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.preview-pill,
.preview-block,
.preview-line{
  border-radius: 999px;
  background: linear-gradient(90deg,
    rgba(255,255,255,.06) 0%,
    rgba(255,255,255,.10) 45%,
    rgba(255,255,255,.06) 100%);
  background-size: 220% 100%;
  animation: shimmer 2.2s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,.08);
}

.preview-pill{ height: 18px; }
.preview-block{
  height: 92px;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}

.preview-line{
  height: 14px;
  position: relative;
  z-index: 1;
}

.w-18{ width: 18%; }
.w-22{ width: 22%; }
.w-25{ width: 25%; }
.w-30{ width: 30%; }
.w-40{ width: 40%; }
.w-70{ width: 70%; }

@keyframes shimmer{
  0%{ background-position: 0% 0; }
  100%{ background-position: 200% 0; }
}

.form-check-input{
  background-color: transparent;
  border: 2px solid #ffffff;
}

.form-check-input:checked{
  background-color: #ffffff;
  border-color: #ffffff;
}

.form-check-input:checked::before{
  color: #000000;
}

/* Focus propre */
.form-check-input:focus{
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
  border-color: #ffffff;
}

/* CVE HORIZON – CARD (style nouveau, compatible thème existant) */
.evHorizonCard{
  --bd: rgba(255,255,255,.10);
  --bd2: rgba(255,255,255,.08);
  --glass: rgba(16,23,34,.70);
  --glass2: rgba(10,16,26,.78);
  --soft: rgba(255,255,255,.03);

  position: relative;
  border-radius: 18px;
  border: 1px solid var(--bd);
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  box-shadow: 0 16px 40px rgba(0,0,0,.48), inset 0 0 0 1px rgba(255,255,255,.02);
  overflow: hidden;
  padding: 18px;
  max-width: 880px;
  margin-inline: auto;
  margin-top: 0;
}

.evHorizonCard::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(620px 320px at 12% 16%, rgba(0,226,166,.14), transparent 60%),
    radial-gradient(620px 320px at 88% 10%, rgba(0,217,255,.10), transparent 62%);
  opacity:.78;
}

.evHorizonCard__top{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 2px 2px 14px;
}

.evHorizonCard__brand{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 0;
}

.evHorizonCard__icon{
  width: 62px;
  height: 62px;
  border-radius: 16px;
  border: 1px solid rgba(0,226,166,.22);
  background: rgba(0,226,166,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.03);
  display:grid;
  place-items:center;
  overflow:hidden;
  flex: 0 0 auto;
}

.evHorizonCard__iconImg{
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.35)) drop-shadow(0 0 10px rgba(0,226,166,.18));
}

.evHorizonCard__titles{ min-width:0; }

.evHorizonCard__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: clamp(1.15rem, 1.02rem + .7vw, 1.55rem);
  color: rgba(235,255,248,.96);
}

.evHorizonCard__tagline{
  margin: 6px 0 0;
  color: rgba(232,238,246,.80);
  line-height: 1.45;
  max-width: 70ch;
}

.evHorizonStatus{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,176,32,.10);
  border: 1px solid rgba(255,176,32,.26);
  color: rgba(255,226,180,.92);
  font-size: .88rem;
  font-weight: 650;
  white-space: nowrap;
}

.evHorizonStatus__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffb020;
  box-shadow: 0 0 0 4px rgba(255,176,32,.14);
  animation: evHorizonPulse 1.8s ease-in-out infinite;
}

@keyframes evHorizonPulse{
  0%{ transform: scale(1); box-shadow: 0 0 0 4px rgba(255,176,32,.10); }
  50%{ transform: scale(1.08); box-shadow: 0 0 0 7px rgba(255,176,32,.18); }
  100%{ transform: scale(1); box-shadow: 0 0 0 4px rgba(255,176,32,.10); }
}

/* Mid */
.evHorizonCard__mid{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 2px 14px;
  border-top: 1px solid var(--bd2);
}

.evHorizonPrice{
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.evHorizonPrice__main{
  display:flex;
  align-items:baseline;
  gap: 10px;
}

.evHorizonPrice__value{
  font-weight: 950;
  letter-spacing: .2px;
  font-size: clamp(2.2rem, 1.7rem + 2.2vw, 3.1rem);
  color: rgba(235,255,248,.98);
}

.evHorizonPrice__unit{
  font-weight: 800;
  font-size: 1.05rem;
  color: rgba(220,236,255,.78);
}

.evHorizonPrice__hint{
  font-size: .95rem;
  color: rgba(220,236,255,.68);
}

.evHorizonHighlights{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:flex-end;
  max-width: 420px;
}

.evHorizonPill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(235,255,248,.78);
  font-size: .86rem;
  font-weight: 650;
}

/* Grid items */
.evHorizonCard__grid{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 2px 10px;
  border-top: 1px solid var(--bd2);
}

.evHorizonItem{
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid rgba(255,255,255,.08);
  padding: 12px 12px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.evHorizonItem:hover{
  transform: translateY(-1px);
  background: rgba(0,226,166,.06);
  border-color: rgba(0,226,166,.22);
}

.evHorizonItem__left{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}

.evHorizonTick{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(0,226,166,.16);
  border: 1px solid rgba(0,226,166,.28);
  box-shadow: inset 0 0 10px rgba(0,226,166,.10);
  flex: 0 0 auto;
  position: relative;
  margin-top: 1px;
}

.evHorizonTick::after{
  content:"";
  position:absolute;
  left: 6px;
  top: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid rgba(235,255,248,.92);
  border-bottom: 2px solid rgba(235,255,248,.92);
  transform: rotate(40deg);
}

.evHorizonItem__txt{ min-width:0; }

.evHorizonItem__h{
  font-weight: 900;
  letter-spacing: .2px;
  color: rgba(235,255,248,.92);
}

.evHorizonItem__p{
  margin-top: 3px;
  color: rgba(232,238,246,.74);
  line-height: 1.35;
}

/* Bottom */
.evHorizonCard__bottom{
  position: relative;
  z-index: 1;
  padding: 12px 2px 2px;
  border-top: 1px solid var(--bd2);
}

.evHorizonActions{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.evHorizonBtn{
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(235,255,248,.86);
  font-weight: 850;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.evHorizonBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.evHorizonBtn--locked{
  cursor: not-allowed;
  opacity: .85;
}

.evHorizonBtn--locked:hover{
  transform: none;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}

.evHorizonBtn__lock{
  filter: drop-shadow(0 0 8px rgba(255,176,32,.14));
}

.evHorizonLink{
  color: #a8ffea;
  text-decoration: none;
  font-weight: 800;
  padding-bottom: 2px;
  border-bottom: 1px dashed rgba(168,255,234,.30);
  transition: color .16s ease, border-color .16s ease;
}

.evHorizonLink:hover{
  color: rgba(235,255,248,.95);
  border-bottom-color: rgba(0,226,166,.55);
}

.evHorizonFootnote{
  margin: 12px 0 0;
  color: rgba(232,238,246,.68);
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 900px){
  .evHorizonCard__mid{
    flex-direction: column;
    align-items: flex-start;
  }
  .evHorizonHighlights{
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 720px){
  .evHorizonCard__top{
    flex-direction: column;
    align-items: flex-start;
  }
  .evHorizonCard__grid{
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce){
  .evHorizonStatus__dot{ animation: none; }
  .evHorizonItem, .evHorizonBtn{ transition: none; }
}


/* === SHARE BUTTONS INTEGRATION === */

/* Bouton principal de partage (Hero) */
.tp-share-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: rgba(0, 226, 166, 0.08);
  border: 1px solid rgba(0, 226, 166, 0.25);
  border-radius: 12px;
  color: rgba(0, 226, 166, 0.95);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.tp-share-btn:hover {
  background: rgba(0, 226, 166, 0.14);
  border-color: rgba(0, 226, 166, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 226, 166, 0.15);
}

.tp-share-btn:focus {
  outline: 2px solid rgba(0, 226, 166, 0.5);
  outline-offset: 2px;
}

.tp-share-btn:active {
  transform: translateY(0);
}

.tp-share-icon {
  color: var(--brand);
}

/* Boutons de partage mini (cartes services) */
.service-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.tp-share-btn-sm {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 226, 166, 0.06);
  border: 1px solid rgba(0, 226, 166, 0.20);
  border-radius: 12px;
  color: var(--brand);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.tp-share-btn-sm:hover {
  background: rgba(0, 226, 166, 0.12);
  border-color: rgba(0, 226, 166, 0.40);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 226, 166, 0.2);
}

.tp-share-btn-sm:focus {
  outline: 2px solid rgba(0, 226, 166, 0.5);
  outline-offset: 2px;
}

.tp-share-btn-sm svg {
  color: var(--brand);
}

/* Modal de partage */
.tp-share-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.tp-share-modal.active {
  display: flex;
}

.tp-share-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}

.tp-share-modal-content {
  position: relative;
  z-index: 1;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 480px;
  width: 100%;
  padding: var(--space-8);
  animation: slideUp 0.3s ease;
}

.tp-share-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.tp-share-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.tp-share-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.tp-share-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.tp-share-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.tp-share-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 226, 166, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tp-share-option:focus {
  outline: 2px solid rgba(0, 226, 166, 0.5);
  outline-offset: 2px;
}

.tp-share-option-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: white;
}

/* Notification de copie */
.tp-copy-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--brand);
  color: #05332a;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(0, 226, 166, 0.4);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  z-index: 10000;
}

.tp-copy-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .tp-share-options {
    grid-template-columns: 1fr;
  }
  
  .tp-share-modal-content {
    padding: var(--space-6);
  }
  
  .service-actions {
    justify-content: center;
  }
}

/* Accessibilité - réduction des animations */
@media (prefers-reduced-motion: reduce) {
  .tp-share-btn,
  .tp-share-btn-sm,
  .tp-share-option,
  .tp-share-modal-overlay,
  .tp-share-modal-content,
  .tp-copy-notification {
    animation: none !important;
    transition: none !important;
  }
}

.tp-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: rgba(0, 226, 166, 0.12);
  border: 1px solid rgba(0, 226, 166, 0.35);
  border-radius: 12px;
  color: var(--brand);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tp-scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tp-scroll-top:hover {
  background: rgba(0, 226, 166, 0.20);
  border-color: rgba(0, 226, 166, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 226, 166, 0.25);
}

.tp-scroll-top:active {
  transform: translateY(0);
}

/* ===================================
   CAPA TOOLTIP V2 - Style sobre
   =================================== */

.capa-tooltip-v2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: help;
}

.capa-price-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  background: rgba(0, 226, 166, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 226, 166, 0.2);
}

.capa-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.capa-tooltip-v2:hover .capa-info-icon {
  color: var(--brand);
}

/* Tooltip content */
.capa-tooltip-content {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);  /* Changé de top à bottom */
  width: 350px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);  /* Changé de -5px à +5px */
  transition: all 0.2s ease;
  pointer-events: none;
}

.capa-tooltip-v2:hover .capa-tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.capa-tooltip-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 226, 166, 0.05);
  border-radius: 12px 12px 0 0;
}

.capa-tooltip-header strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.capa-tooltip-body {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Cellule Option dans le tableau */
.option-cell {
  color: #5ea7ff !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.option-cell i {
  margin-right: 0.3rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .capa-tooltip-content {
    width: 280px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);  /* Changé de -5px à +5px */
  }
  
  .capa-tooltip-v2:hover .capa-tooltip-content {
    transform: translateX(-50%) translateY(0);
  }
}