/* Fonts */
/* Guides Colors */
/* Focus Timer */
/* Colors */
/* Text Colors */
/* Text Sizes */
/* Buttons text sizes */
/* Buttons Colors */
/* Background Colors */
/* Border Colors */
/* Breakpoints */
/* Box shadow */
/* Max width */
/* Onboarding */
/* LKfontfamily */
/* Strategy min height of dragable */
/* Dark mode */
/* CLIENTS - CMS */
:root {
  /* Couleurs de base */
  --color-bg: #f2f1f0;
  --color-bg-secondary: #f7f7f7;
  --color-bg-sidebar: #fff;
  --color-bg-sidebar-active: #eaeaea;
  --color-bg-chat: #fff;
  --color-bg-chat-user: #5C5C5C;
  --color-bg-chat-code-header: #fff;
  --color-bg-chat-code-content: #5C5C5C;
  --color-text-chat-code-content: #fff;
  --color-text-chat-user: #fff;
  --color-text-sidebar-active: #272727;
  --color-text: #272727;
  --color-text-secondary: #5C5C5C;
  --color-text-muted: #bdbdbd;
  --color-text-inverse: #fff;
  --color-accent: #31d2f7;
  --color-accent-hover: #054f9e;
  --color-accent-active: #31d2f7;
  --color-border: #eaeaea;
  --color-border-secondary: #eaeaea;
  /* Couleurs d'état */
  --color-success: #20692b;
  --color-error: #e05050;
  --color-warning: #F7AF1A;
  --color-info: #31d2f7;
  /* Espacement */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  /* Tailles de police */
  --font-size-small: 0.8rem;
  --font-size-base: 1rem;
  --font-size-large: 1.5rem;
  --font-size-xl: 2rem;
  /* Taille des éléments d'interface */
  --size-button-height: 40px;
  --size-input-height: 40px;
  /* Taille des blocs au sein des pages */
  --size-max-width-limited: max-width: 1200px;
  /* Ombres */
  --shadow-sm: 0 3px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 10px rgba(0, 0, 0, 0.2);
  /* Rayons des coins */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 15px;
}
/* ═══════════════════════════════════════════════════════════════
   INDEX PAGE — Modern redesign v2
   ═══════════════════════════════════════════════════════════════ */
/* ──────────────────────────────────────────
   HERO V2 — Full-screen video + particles
   ────────────────────────────────────────── */
.hero-v2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0f;
}
.hero-v2__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-v2__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}
.hero-v2__particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: auto;
}
/* ──────────────────────────────────────────
   HERO NAV — Disappears on scroll
   ────────────────────────────────────────── */
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-nav--hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}
.hero-nav__logo img {
  height: 75px;
  transition: opacity 0.3s ease;
}
.hero-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-nav__cta:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
/* ──────────────────────────────────────────
   HERO CONTENT
   ────────────────────────────────────────── */
.hero-v2__content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #fff;
  padding: 100px 20px 60px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-v2__title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}
.hero-v2__accent {
  background: linear-gradient(135deg, #31d2f7, #F7AF1A, #ff6b6b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-v2__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
}
.hero-v2__beta {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Hero pills */
.hero-v2__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 8px 0;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}
.hero-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.hero-pill__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
/* CTA Button — Glow effect */
.hero-v2__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  background: linear-gradient(135deg, #31d2f7, #0099cc);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(49, 210, 247, 0.3), 0 0 60px rgba(49, 210, 247, 0.1);
  transition: all 0.3s ease;
  animation: ctaGlow 3s ease-in-out infinite;
}
.hero-v2__cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(49, 210, 247, 0.5), 0 0 80px rgba(49, 210, 247, 0.2);
  color: #fff;
  text-decoration: none;
}
.hero-v2__cta-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.hero-v2__cta-btn:hover .hero-v2__cta-arrow {
  transform: translateX(4px);
}
@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(49, 210, 247, 0.3), 0 0 60px rgba(49, 210, 247, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(49, 210, 247, 0.5), 0 0 80px rgba(49, 210, 247, 0.2);
  }
}
/* Scroll indicator */
.hero-v2__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-v2__scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-v2__scroll-wheel {
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}
/* ──────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ────────────────────────────────────────── */
.reveal,
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed,
[data-animate].revealed {
  opacity: 1;
  transform: translateY(0);
}
/* ──────────────────────────────────────────
   SECTION HEADERS
   ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #272727;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.section-header__sub {
  font-size: 1.05rem;
  color: #5C5C5C;
  margin: 0;
}
/* ──────────────────────────────────────────
   FEATURES SECTION
   ────────────────────────────────────────── */
.section-features {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
/* Glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.feature-card {
  padding: 36px 28px;
  text-align: center;
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(49, 210, 247, 0.12), rgba(49, 210, 247, 0.04));
}
.feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: #31d2f7;
}
.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #272727;
  margin: 0 0 10px;
}
.feature-card__desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5C5C5C;
  margin: 0;
}
/* ──────────────────────────────────────────
   PRESS SECTION
   ────────────────────────────────────────── */
.section-press {
  padding: 80px 0;
  background: #fff;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.press-grid--featured {
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .press-grid--featured {
    grid-template-columns: 1fr 1fr;
  }
}
.press-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.press-card__media {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f6f7f9;
  display: block;
  overflow: hidden;
}
.press-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.press-card:hover .press-card__media img {
  transform: scale(1.04);
}
.press-card__title {
  padding: 12px 16px 16px;
  color: #272727;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
.press-card--featured {
  border-radius: 20px;
}
.press-card--featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
  transition: transform 0.5s ease;
}
.press-card--featured:hover img {
  transform: scale(1.03);
}
/* ──────────────────────────────────────────
   A PROPOS SECTION (from _Apropos partial)
   ────────────────────────────────────────── */
.apropos-section {
  position: relative;
  background: url("https://imagedelivery.net/qQ9AUMcvu0o-g6eEBbXGqw/1be61742-c3fc-4662-75a5-d68db5f4c400/public?format=auto") center / cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
  clear: both;
}
/* Parent wrapper — cancel float & margin so no grey gap appears */
.container-fluid-no-max-width:has(.apropos-section) {
  float: none !important;
  clear: both;
}
.apropos-section.c-margin-top-l {
  margin-top: 0 !important;
}
.apropos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  z-index: 0;
}
.apropos-section .row {
  position: relative;
  z-index: 1;
}
/* ──────────────────────────────────────────
   CALENDLY SECTION
   ────────────────────────────────────────── */
.section-calendly {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}
.calendly-wrapper {
  height: 900px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
/* ──────────────────────────────────────────
   FOOTER V2
   ────────────────────────────────────────── */
.footer-v2 {
  background: #0a0a0f;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 30px;
}
.footer-v2__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-v2__links {
  display: flex;
  gap: 28px;
}
.footer-v2__links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-v2__links a:hover {
  color: #fff;
}
.footer-v2__copy {
  font-size: 0.8rem;
  opacity: 0.4;
  margin: 0;
}
/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero-nav {
    padding: 14px 16px;
  }
  .hero-nav__cta {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .hero-v2__content {
    padding: 80px 16px 50px;
  }
  .hero-v2__pills {
    gap: 8px;
  }
  .hero-pill {
    padding: 6px 12px;
    font-size: 0.78rem;
  }
  .hero-pill--hide-mobile {
    display: none;
  }
  .hero-v2__cta-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .section-features {
    padding: 60px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-press {
    padding: 60px 0;
  }
  .section-calendly {
    padding: 60px 0;
  }
  .calendly-wrapper {
    height: 700px;
    border-radius: 12px;
  }
  .footer-v2__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
/* Disable video on very small screens for performance */
@media (max-width: 480px) {
  .hero-v2__video {
    display: none;
  }
  .hero-v2 {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0a0a1a 100%);
  }
}
/* ──────────────────────────────────────────
   LAYOUT OVERRIDES for public homepage
   ────────────────────────────────────────── */
/* Reset the main grid for full-width public homepage */
.main-grid:has(.hero-v2) {
  background-color: transparent;
  grid-template-columns: 1fr;
}
.main-grid:has(.hero-v2) .main-grid-main-content {
  background-color: transparent;
  padding: 0;
  overflow-x: hidden;
  grid-column: 1 / -1;
  width: 100%;
}
.main-grid:has(.hero-v2) .main-grid-menu-top {
  grid-column: 1 / -1;
}
.no-grid-template-columns {
  grid-template-columns: 0 !important;
}
