/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./src/js/Public/styles/Script.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* ============================================
   TABLE DES MATIÈRES
   ============================================
   1. Variables & Reset
   2. Base & Typography
   3. Layout & Container
   4. Components
      - Buttons
      - Tags
      - Cards
      - Forms
   5. Header & Navigation
   6. Hero Section
   7. Solutions Section
   8. Services Section
   9. Pricing Section
   10. Footer
   11. Utilities
   12. Responsive
   ============================================ */
/* ============================================
   1. VARIABLES & RESET
   styles/_config.scss
   ============================================ */
:root {
  /* Colors - Light Theme */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8f9fa;
  --color-text-primary: #202124;
  --color-text-secondary: #5f6368;
  --color-border: #dadce0;
  --color-accent: #3d91c6; /* couleur principale (boutons, liens actifs, etc.) */
  --color-hover: #f1f3f4;
  /* Colors - Semantic */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  --color-hero: #3c91c7;
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-dark: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #831843 100%);
  --gradient-footer: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  /* Layout */
  --container-max-width: 1400px;
  --header-height: 64px;
}

[data-theme=dark] {
  --color-bg-primary: #202124;
  --color-bg-secondary: #292a2d;
  --color-text-primary: #e8eaed;
  --color-text-secondary: #9aa0a6;
  --color-border: #3c4043;
  --color-hover: #3c4043;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #831843 100%);
}

/* ============================================
   1. BOX-SIZING & LAYOUT DE BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-base), color var(--transition-base);
}

/* ============================================
   2. TITRES & TEXTE
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

p {
  margin: 0 0 var(--spacing-md);
  color: var(--color-text-secondary);
}

.purple-shop {
  --accent-color: #a10def;
}

.orange-shop {
  --accent-color: #d97706;
}

.green-shop {
  --accent-color: #03c33c;
}

.blue-shop {
  --accent-color: #3f94c4 ;
}

.blue-black {
  --accent-color: #000 ;
}

.blue-red {
  --accent-color: #dd0003 ;
}

/* ============================================
   3. LIENS
   ============================================ */
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--color-text-primary);
}

/* ============================================
   4. LISTES
   ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ============================================
   5. MÉDIAS
   ============================================ */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================================
   6. FORMULAIRES
   ============================================ */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* ============================================
   7. ACCESSIBILITÉ : PRÉFÉRENCE UTILISATEUR
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
[class$=-shop] .dot {
  color: var(--accent-color);
  background: var(--accent-color);
}
[class$=-shop] .callout {
  border-left: 5px solid var(--accent-color);
}

/* ============================================
   3. LAYOUT & CONTAINER
   ============================================ */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section__title {
  margin-bottom: var(--spacing-sm);
}

.section__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   4. COMPONENTS
   ============================================ */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.55rem 1.5rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn--primary {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  background-color: var(--color-accent);
  color: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-full);
}
.btn--primary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.btn--light {
  text-align: center;
  background-color: #444444;
  color: #ffffff;
  border: 2px solid #444444;
  border-radius: var(--radius-full);
}
.btn--light:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text-primary);
}
.btn--outline:hover {
  background-color: var(--color-hover);
  border-color: var(--color-accent);
}

.btn--hero-primary {
  background-color: #ffffff;
  color: #667eea;
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}
.btn--hero-primary:hover {
  background-color: #fbbf24;
  color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.btn--hero-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}
.btn--hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgb(255, 222, 138);
}

/* Tags */
.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: transform var(--transition-fast);
}
.tag:hover {
  transform: translateY(-2px);
}

/* Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
}
.social-icon:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.3);
}

.social-icon--footer {
  /*background-color: rgba(31, 41, 55, 1);*/
  color: #ffffff;
  border-radius: var(--radius-md);
}
.social-icon--footer:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.rating__stars {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.rating__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
}

/* Badge Float */
.badge-float {
  position: absolute;
  background-color: rgba(251, 191, 36, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

[data-theme=dark] .badge-float {
  background-color: rgba(255, 255, 255, 0.1);
}

.badge-float--top {
  top: 45%;
  right: -5%;
}

.badge-float--bottom {
  bottom: 10%;
  left: -8%;
}

.badge-float__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-float--warning .badge-float__icon {
  background-color: #fef3c7;
  color: #f59e0b;
}

[data-theme=dark] .badge-float--warning .badge-float__icon {
  background-color: rgba(245, 158, 11, 0.2);
}

.badge-float--success .badge-float__icon {
  background-color: #d1fae5;
  color: #10b981;
}

[data-theme=dark] .badge-float--success .badge-float__icon {
  background-color: rgba(16, 185, 129, 0.2);
}

.badge-float__content {
  display: flex;
  flex-direction: column;
}

.badge-float__label {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
}

.badge-float__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* ============================================
   5. HEADER & NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}
.header.scrolled {
  box-shadow: var(--shadow-lg);
}
.header.header--hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--spacing-md);
}

/* Logo */
.nav__logo img {
  display: block;
}

/* Menu (desktop) */
.nav__menu {
  display: flex;
  flex: 1;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__item {
  list-style: none;
}

.nav__link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: none;
}
.nav__link:hover {
  background-color: var(--color-hover);
}

/* Dropdown (desktop) */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__dropdown-toggle::after {
  content: "▼";
  font-size: 0.625rem;
  transition: transform var(--transition-base);
}

.nav__item--dropdown.active .nav__dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 340px;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-xl);
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.nav__item--dropdown.active .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  transition: background-color var(--transition-fast);
  text-decoration: none;
}
.nav__dropdown-link:hover {
  background-color: var(--color-hover);
}

/* Actions (desktop) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Burger */
.nav__toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  line-height: 1;
}
.nav__toggle:focus-visible {
  outline: 2px solid var(--theme_color_third_darker);
  outline-offset: 2px;
}

.nav__toggle-icon {
  position: relative;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.nav__toggle-icon::before, .nav__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
}
.nav__toggle-icon::before {
  top: -6px;
}
.nav__toggle-icon::after {
  top: 6px;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    height: auto;
    padding: 0.5rem 0;
  }
  /* On montre le burger */
  .nav__toggle {
    display: inline-flex;
  }
  /* On cache les CTA secondaires */
  .nav__actions .btn--cta {
    display: none;
  }
  /* Menu : caché par défaut, plein largeur quand ouvert */
  .nav__menu {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-primary);
  }
  .nav.is-open .nav__menu {
    display: flex;
  }
  .nav__link {
    width: 100%;
  }
  /* Dropdown mobile */
  .nav__item--dropdown {
    width: 100%;
  }
  .nav__dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav__dropdown {
    display: none;
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 0.25rem;
    padding: 0.25rem 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-primary);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .nav__item--dropdown.active > .nav__dropdown {
    display: block;
  }
}
.hero {
  background: linear-gradient(130deg, #3c91c7 60%, #4fa9ae 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
[data-theme=dark] .hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #831843 100%);
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  margin: 0 0.5rem;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero__title {
  font-size: var(--font-size-5xl);
  color: #fff;
}
.hero__title .text-highlight {
  color: #fbbf24;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}
.hero__description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}
.hero__slogan {
  font-size: var(--font-size-3xl);
  --glow-color: #f8ef02;
  color: var(--glow-color);
  text-shadow: 0 0 30px color-mix(in srgb, var(--glow-color) 70%, transparent);
}
.hero__actions {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}
.hero__social {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
}
.hero__social-icons {
  display: flex;
  gap: var(--spacing-xs);
}
.hero__social-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-sm);
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image-placeholder {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.hero__image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}
[data-theme=dark] .hero__image-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.hero {
  /* ============================================
     RESPONSIVE (encapsulé)
     ============================================ */
  /* Tablette */
}
@media (max-width: 1024px) {
  .hero {
    padding: 4rem 0;
  }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__visual {
    order: -1;
    min-height: 400px;
  }
  .hero__title {
    font-size: var(--font-size-4xl);
  }
  .hero__title .text-highlight {
    text-shadow: 0 0 22px rgba(251, 191, 36, 0.45);
  }
}
.hero {
  /* Mobile */
}
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
  .hero__visual {
    min-height: 300px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    justify-content: center;
    width: 100%;
  }
  .hero__title {
    font-size: var(--font-size-4xl);
  }
}
.hero {
  /* Petits mobiles */
}
@media (max-width: 480px) {
  .hero__title {
    font-size: var(--font-size-3xl);
  }
  .hero__description {
    font-size: var(--font-size-base);
  }
  .hero__badge {
    font-size: var(--font-size-xs, var(--font-size-sm));
    padding: 0.4rem 0.75rem;
  }
}

.heroSmoll {
  background: linear-gradient(130deg, var(--color-hero) 60%, #4fa9ae 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
[data-theme=dark] .heroSmoll {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #831843 100%);
}
.heroSmoll__container {
  display: grid;
  grid-template-columns: 2fr 1fr; /* 2/3 - 1/3 */
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.heroSmoll__title {
  color: #000;
  margin-bottom: var(--spacing-md);
}
.heroSmoll__title .text-highlight {
  color: #fbbf24;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}
.heroSmoll__description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.heroHelper {
  background: linear-gradient(130deg, var(--color-hero, #3f94c4) 60%, #4fa9ae 100%);
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
}
[data-theme=dark] .heroHelper {
  background: linear-gradient(135deg, #1e3a8a 0%, #581c87 50%, #831843 100%);
}
.heroHelper .container {
  display: grid;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}
@media (max-width: 992px) {
  .heroHelper .container {
    grid-template-columns: 1fr;
  }
}
.heroHelper .hero__content {
  min-width: 0;
  z-index: 2;
}
.heroHelper .hero__visual {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 992px) {
  .heroHelper .hero__visual {
    min-height: 240px;
    margin-top: 1rem;
  }
}
.heroHelper .hero__image-placeholder {
  position: absolute;
  inset: 0;
}
.heroHelper .hero__image-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.heroHelper .hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05) 60%);
  pointer-events: none;
}

/* ============================================
   7. SOLUTIONS SECTION
   ============================================ */
.solutions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: var(--spacing-lg);
}

.solution-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-xl);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
}

.solution-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.solution-item__icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.solution-item:hover .solution-item__icon-wrapper {
  transform: scale(1.05);
}

.solution-item__icon-wrapper svg {
  color: #ffffff;
}

.solution-item__icon-wrapper--blue {
  background: linear-gradient(135deg, #6dcaff 0%, #3f94c4 100%);
}

.solution-item__icon-wrapper--green {
  background: linear-gradient(135deg, #a4f9bd 0%, #03c33c 100%);
}

.solution-item__icon-wrapper--orange {
  background: linear-gradient(135deg, #ffc667 0%, #d97706 100%);
}

.solution-item__icon-wrapper--purple {
  background: linear-gradient(135deg, #c8bae1 0%, #7c3aed 100%);
}

.solution-item__content {
  display: flex;
  flex-direction: column;
}

.solution-item__title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.solution-item:hover .solution-item__title {
  color: var(--color-accent);
}

.solution-item__subtitle {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--gradient-color-start), var(--gradient-color-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution-item__subtitle--blue {
  --gradient-color-start: #3b82f6;
  --gradient-color-end: #2563eb;
}

.solution-item__subtitle--green {
  --gradient-color-start: #10b981;
  --gradient-color-end: #059669;
}

.solution-item__subtitle--orange {
  --gradient-color-start: #f59e0b;
  --gradient-color-end: #d97706;
}

.solution-item__subtitle--purple {
  --gradient-color-start: #8b5cf6;
  --gradient-color-end: #7c3aed;
}

.solution-item__description {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.solution-item__features {
  list-style: none;
  margin-bottom: var(--spacing-md);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.solution-item__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-primary);
}

.solution-item__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.solution-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gradient-color-start), var(--gradient-color-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: flex-start;
  transition: gap var(--transition-fast);
}

.solution-item__link--blue {
  --gradient-color-start: #3b82f6;
  --gradient-color-end: #2563eb;
}

.solution-item__link--green {
  --gradient-color-start: #10b981;
  --gradient-color-end: #059669;
}

.solution-item__link--orange {
  --gradient-color-start: #f59e0b;
  --gradient-color-end: #d97706;
}

.solution-item__link--purple {
  --gradient-color-start: #8b5cf6;
  --gradient-color-end: #7c3aed;
}

.solution-item__link svg {
  transition: transform var(--transition-fast);
}

.solution-item:hover .solution-item__link {
  gap: 0.75rem;
}

.solution-item:hover .solution-item__link svg {
  transform: translateX(4px);
}

/*

.solution-card {
    position: relative;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-primary);
    transition: all 0.4s ease;
    cursor: pointer;
}

.solution-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);*/
/*}

.solution-card__arrow {
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.solution-card:hover .solution-card__arrow {
    transform: scale(1.1);
}

.solution-card__title {
    font-size: var(--font-size-2xl);
    margin-bottom: 0.5rem;
}

.solution-card__subtitle {
    font-size: var(--font-size-base);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

.solution-card__description {
    margin-bottom: var(--spacing-md);
}

.solution-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}*/
/* Solution Card Variants */
/*.solution-card--emerald .solution-card__icon {
  background-color: #10b981;
}

.solution-card--emerald .solution-card__subtitle {
  color: #10b981;
}

.solution-card--emerald .solution-card__arrow {
  background-color: #d1fae5;
  color: #10b981;
}

.solution-card--emerald .tag {
  background-color: #d1fae5;
  color: #10b981;
}*/
/*
[data-theme="dark"] .solution-card--emerald .tag {
    background-color: rgba(16, 185, 129, 0.2);
}

.solution-card--amber .solution-card__icon {
    background-color: #f59e0b;
}

.solution-card--amber .solution-card__subtitle {
    color: #f59e0b;
}

.solution-card--amber .solution-card__arrow {
    background-color: #fef3c7;
    color: #f59e0b;
}

.solution-card--amber .tag {
    background-color: #fef3c7;
    color: #f59e0b;
}*/
/*[data-theme="dark"] .solution-card--amber .tag {
    background-color: rgba(245, 158, 11, 0.2);
}

.solution-card--pink .solution-card__icon {
    background-color: #ec4899;
}

.solution-card--pink .solution-card__subtitle {
    color: #ec4899;
}

.solution-card--pink .solution-card__arrow {
    background-color: #fce7f3;
    color: #ec4899;
}

.solution-card--pink .tag {
    background-color: #fce7f3;
    color: #ec4899;
}*/
/*[data-theme="dark"] .solution-card--pink .tag {
    background-color: rgba(236, 72, 153, 0.2);
}

.solution-card--blue .solution-card__icon {
    background-color: #3b82f6;
}

.solution-card--blue .solution-card__subtitle {
    color: #3b82f6;
}

.solution-card--blue .solution-card__arrow {
    background-color: #dbeafe;
    color: #3b82f6;
}

.solution-card--blue .tag {
    background-color: #dbeafe;
    color: #3b82f6;
}

[data-theme="dark"] .solution-card--blue .tag {
    background-color: rgba(59, 130, 246, 0.2);
}*/
/* ============================================
   8. SERVICES SECTION
   ============================================ */
.section--services {
  background-color: var(--color-bg-secondary);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: var(--color-accent);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-accent), #0095e8);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-base);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card__icon svg {
  color: #ffffff;
}

.service-card__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.service-card__description {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
  flex: 1;
  line-height: 1.6;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
  align-self: flex-start;
}

.service-card__link svg {
  transition: transform var(--transition-fast);
}

.service-card__link:hover {
  gap: 0.75rem;
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   9. PRICING SECTION - AMÉLIORÉ
   ============================================ */
.top--pricing {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  padding-bottom: 50px;
  padding-top: 20px;
}

.container--pricing {
  margin: 50px auto;
}

.section--pricing {
  margin-bottom: 50px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}
@media (max-width: 1024px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background-color: var(--color-bg-primary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all var(--transition-base);
  position: relative;
}
.pricing-card:hover {
  box-shadow: 0 25px 50px rgba(118, 75, 162, 0.4);
  transform: translateY(-8px);
  border-color: #764ba2;
}

.pricing-card--featured {
  background: linear-gradient(135deg, #000 0%, #764ba2 100%);
  border: none;
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(118, 75, 162, 0.3);
}
.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 50px rgba(118, 75, 162, 0.4);
}
.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__period,
.pricing-card--featured .pricing-card__description,
.pricing-card--featured .pricing-card__features li {
  color: #ffffff;
}
.pricing-card--featured .pricing-card__badge {
  background: #fbbf24;
  color: #78350f;
}

[data-theme=dark] .pricing-card--featured {
  background: linear-gradient(135deg, #4c51bf 0%, #6b46c1 100%);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e5e7eb;
  color: #374151;
  padding: 0.375rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.pricing-card__name {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1;
  color: #111827;
}
.pricing-card--featured .pricing-card__price {
  color: #fff;
}

.pricing-card__period {
  font-size: var(--font-size-lg);
  font-weight: 400;
  color: var(--color-text-secondary);
}

.pricing-card__description {
  margin-bottom: var(--spacing-lg);
  color: #6b7280;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-size-sm);
  margin-bottom: 0.75rem;
}

.pricing-card__cta .btn {
  width: 100%;
}

/* ============================================
   STATS SECTION - Compteurs animés
   ============================================ */
.section--stats {
  margin: 30px 0;
  padding: var(--spacing-2xl) 0;
  border-top: 1px solid var(--color-border);
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.15) 0, transparent 55%), radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.15) 0, transparent 55%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
}

/* Carte statistique */
.stat-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Nombre avec gradient */
.stat-card__number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3d91c6 0%, #4f46e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

[data-theme=dark] .stat-card__number {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animation de pulsation sur le nombre */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.stat-card.counting .stat-card__number {
  animation: pulse 0.5s ease-in-out;
}

/* Label */
.stat-card__label {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  font-weight: 500;
  margin: 0;
}

/* Effet de brillance */
.stat-card__number::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
/* ============================================
   RESPONSIVE - STATS
   ============================================ */
/* Tablette */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
  .stat-card__number {
    font-size: 3rem;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .section--stats {
    padding: var(--spacing-xl) 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  .stat-card__number {
    font-size: 2.5rem;
  }
  .stat-card__label {
    font-size: var(--font-size-sm);
  }
}
/* Petits mobiles */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .stat-card__number {
    font-size: 3rem;
  }
  .stat-card {
    padding: var(--spacing-md) 0;
  }
}
/* ============================================
   TESTIMONIALS SECTION - Avis Clients
   ============================================ */
.section--testimonials {
  position: relative;
  overflow: hidden;
}

[data-theme=dark] .section--testimonials {
  background: linear-gradient(to bottom, #1a1a1a 0%, #202124 100%);
}

/* Badge au-dessus du titre */
.section__badge {
  display: inline-block;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

[data-theme=dark] .section__badge {
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.2) 0%, rgba(25, 118, 210, 0.3) 100%);
  color: #64b5f6;
}

/* Grid des témoignages */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

/* Carte de témoignage */
.testimonial-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: #1976d2;
}

/* Guillemets */
.testimonial-card__quote {
  color: #e3f2fd;
  /*margin-bottom: var(--spacing-md);*/
}

[data-theme=dark] .testimonial-card__quote {
  color: rgba(25, 118, 210, 0.4);
}

.testimonial-card__quote svg {
  width: 48px;
  height: 48px;
}

/* Notation étoiles */
.testimonial-card__rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--spacing-md);
}

.testimonial-card__rating .star {
  color: #fbbf24;
  font-size: 1.25rem;
}

/* Texte du témoignage */
.testimonial-card__text {
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  flex: 1;
}

/* Auteur */
.testimonial-card__author {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
}

.testimonial-card__info {
  flex: 1;
}

.testimonial-card__name {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-card__role {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0.125rem;
}

.testimonial-card__company {
  font-size: var(--font-size-sm);
  color: #1976d2;
  font-weight: 500;
}

[data-theme=dark] .testimonial-card__company {
  color: #64b5f6;
}

/* Footer avec badge Google */
.testimonials__footer {
  display: flex;
  justify-content: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.google-badge svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.google-badge__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.google-badge__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.google-badge__score {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-primary);
}

.google-badge__stars {
  display: flex;
  gap: 0.125rem;
}

.google-badge__stars .star {
  color: #fbbf24;
  font-size: 1rem;
}

.google-badge__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.google-badge__text strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE - TESTIMONIALS
   ============================================ */
/* Tablette */
@media (max-width: 1024px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  .testimonial-card:last-child {
    grid-column: 1/-1;
    max-width: 600px;
    margin: 0 auto;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .testimonial-card {
    padding: var(--spacing-lg);
  }
  .testimonial-card:last-child {
    grid-column: 1;
    max-width: 100%;
  }
  .testimonial-card__quote svg {
    width: 36px;
    height: 36px;
  }
  .testimonial-card__text {
    font-size: var(--font-size-sm);
  }
  .testimonial-card__avatar {
    width: 48px;
    height: 48px;
  }
  .google-badge {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-md);
  }
  .google-badge__info {
    align-items: center;
  }
}
/* Petits mobiles */
@media (max-width: 480px) {
  .testimonial-card__rating .star {
    font-size: 1rem;
  }
  .testimonial-card__name {
    font-size: var(--font-size-sm);
  }
  .testimonial-card__role,
  .testimonial-card__company {
    font-size: var(--font-size-xs);
  }
}
/* ============================================
   ANIMATIONS - TESTIMONIALS
   ============================================ */
/* Animation au chargement */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Désactiver l'animation après le chargement */
@media (prefers-reduced-motion: no-preference) {
  .testimonial-card {
    animation-iteration-count: 1;
  }
}
/* Effet de brillance au hover */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-xl);
}

.testimonial-card:hover::before {
  left: 100%;
}

/* S'assurer que le contenu reste au-dessus */
.testimonial-card > * {
  position: relative;
  z-index: 2;
}

/* ============================================
   FAQ - Adliss / Administralis
   Version : Collapse minimaliste & moderne
   ============================================ */
.section--faq {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

[data-theme=dark] .section--faq {
  background: linear-gradient(180deg, #111827 0%, #020617 100%);
}

/* Header */
.faq__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(61, 145, 198, 0.08);
  color: #1d4ed8;
}

[data-theme=dark] .faq__badge {
  background: rgba(37, 99, 235, 0.25);
  color: #bfdbfe;
}

.faq__title {
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.faq__subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

/* Accordion wrapper */
.faq__accordion {
  max-width: 1100px;
  margin: 0 auto var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Item */
.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-primary);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(61, 145, 198, 0.5);
  box-shadow: var(--shadow-md);
}

/* Bouton de toggle */
.faq-item__toggle {
  width: 100%;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
}

.faq-item__toggle:focus-visible {
  box-shadow: 0 0 0 2px rgba(61, 145, 198, 0.5);
}

/* Icone emoji à gauche */
.faq-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Question */
.faq-item__question {
  flex: 1;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.8rem;
  color: var(--color-accent);
}

/* Chevron */
.faq-item__chevron {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  opacity: 0.8;
}

.faq-item.is-active .faq-item__chevron {
  transform: rotate(180deg);
}

/* Contenu (collapse) */
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), opacity var(--transition-base);
  opacity: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item.is-active .faq-item__content {
  max-height: 400px; /* doit être > au contenu max, au pire tu montes à 800px */
  opacity: 1;
}

/* Texte de réponse */
.faq-item__answer {
  padding: 0.75rem 1.1rem 1rem;
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Footer CTA */
.faq__footer {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 60%);
  text-align: center;
}

[data-theme=dark] .faq__footer {
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 60%);
}

.faq__footer-text {
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .faq__title {
    font-size: 1.75rem;
  }
  .faq__accordion {
    gap: 0.5rem;
  }
  .faq-item__toggle {
    padding: 0.75rem 0.85rem;
  }
  .faq-item__answer {
    padding: 0.5rem 0.85rem 0.85rem;
  }
  .faq__footer {
    padding: var(--spacing-lg);
  }
  .faq__footer .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ============================================
   WHY SECTION - Pourquoi choisir Administralis
   ============================================ */
.section--why {
  position: relative;
  overflow: hidden;
}

[data-theme=dark] .section--why {
  background: linear-gradient(180deg, #202124 0%, #1a1a1a 50%, #202124 100%);
}

/* Décorations */
.section--why::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 117, 185, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Header */
.why__header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

.why__badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

[data-theme=dark] .why__badge {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.3) 100%);
  color: #fbbf24;
}

.why__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.why__subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Grid (3 colonnes) */
.why__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

/* Feature Card */
.why-feature {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--color-bg-primary);
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.why-feature:hover {
  transform: translateY(-12px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0, 117, 185, 0.15);
}

[data-theme=dark] .why-feature:hover {
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
}

/* Feature Icon avec couleurs variées */
.why-feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.4s;
}

.why-feature:hover .why-feature__icon {
  transform: scale(1.1) rotate(5deg);
}

.why-feature__icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.why-feature__icon--primary {
  background: linear-gradient(135deg, #0075b9 0%, #0095e8 100%);
}

.why-feature__icon--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.why-feature__icon--warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.why-feature__icon--info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.why-feature__icon--purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.why-feature__icon--rose {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.why-feature__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.why-feature__description {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   COMPARISON BLOCK - Avant/Après
   ============================================ */
.why__comparison {
  margin-bottom: var(--spacing-2xl);
  position: relative;
  z-index: 1;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-xl);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison__column {
  background: var(--color-bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
}

.comparison__column--before {
  border: 2px solid #fca5a5;
}

.comparison__column--after {
  border: 2px solid #6ee7b7;
}

.comparison__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.comparison__icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-sm);
  display: block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.comparison__icon--sad {
  animation-delay: 0s;
}

.comparison__icon--happy {
  animation-delay: 0.3s;
}

.comparison__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.comparison__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  font-size: var(--font-size-base);
  line-height: 1.5;
}

.comparison__item:last-child {
  margin-bottom: 0;
}

.comparison__item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison__item--negative {
  color: #991b1b;
}

[data-theme=dark] .comparison__item--negative {
  color: #fca5a5;
}

.comparison__item--negative svg {
  color: #dc2626;
}

.comparison__item--positive {
  color: #065f46;
}

[data-theme=dark] .comparison__item--positive {
  color: #6ee7b7;
}

.comparison__item--positive svg {
  color: #10b981;
}

/* Flèche de séparation */
.comparison__separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
}

.comparison__arrow {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0075b9 0%, #0095e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 117, 185, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(0, 117, 185, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 117, 185, 0.4);
  }
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.login-form__error {
  display: none;
}
.login-form__field.is-invalid .login-form__error {
  display: block;
}

.login-form__field {
  width: 100%;
}
.login-form__field .login-form__input,
.login-form__field input,
.login-form__field select,
.login-form__field textarea {
  width: 100%;
  box-sizing: border-box;
}

.ac-wrap {
  position: relative;
}

.ac-box {
  position: absolute;
  z-index: 9999;
  inset-inline: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-height: 320px;
  overflow: auto;
}

.ac-item {
  padding: 10px 12px;
  cursor: pointer;
}
.ac-item:hover, .ac-item.is-active {
  background: rgba(0, 0, 0, 0.05);
}

.autocomplete_xl {
  display: flex;
  gap: 12px;
  align-items: center;
}
.autocomplete_xl .col {
  flex: 1;
}
.autocomplete_xl .coll_10 {
  flex: 10;
}
.autocomplete_xl .coll_2 {
  flex: 2;
  text-align: right;
  opacity: 0.7;
}

.login-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.login-form__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.login-form__actions .btn {
  width: 100%;
}

@media (max-width: 640px) {
  .login-form__row {
    grid-template-columns: 1fr;
  }
}
.solution-cta-block {
  margin: 3rem 0 2.5rem;
  padding: 2.2rem 2.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.75rem;
  border-radius: 22px;
  background: linear-gradient(87deg, rgb(66, 152, 190), rgb(90, 184, 158));
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 24px 60px rgba(0, 0, 0, 0.18);
}
.solution-cta-block__content {
  max-width: 720px;
}
.solution-cta-block__content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.2vw, 2.05rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.solution-cta-block__content p {
  margin: 0;
  line-height: 1.55;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
}
.solution-cta-block__actions {
  display: flex;
  align-items: center;
}
.solution-cta-block__actions .btn {
  white-space: nowrap;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  /* bouton adapté au fond gradient */
  background: #ffffff;
  color: rgb(40, 90, 120);
  border: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.solution-cta-block__actions .btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}
.solution-cta-block__actions .btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

/* Responsive */
@media (max-width: 768px) {
  .solution-cta-block {
    grid-template-columns: 1fr;
  }
  .solution-cta-block__actions {
    justify-content: flex-start;
  }
}
#block_demo {
  background: linear-gradient(130deg, rgb(60, 145, 199) 60%, rgb(79, 169, 174) 100%);
}

.article-item {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.article-item a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.article-item a:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.35);
  outline-offset: 4px;
}
.article-item .solution-item__content {
  padding: 20px 22px 22px;
}
.article-item {
  /* Badges */
}
.article-item .article__badge {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  background: color-mix(in srgb, var(--card-bg, #3c91c7) 12%, transparent);
  color: var(--card-bg, #3c91c7);
  transition: background 0.25s ease, color 0.25s ease;
}
.article-item {
  /* Titre */
}
.article-item__title {
  margin: 8px 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.25s ease;
}
.article-item {
  /* Texte */
}
.article-item p {
  font-size: 0.95rem;
  line-height: 1.45;
}
.article-item:hover {
  background: radial-gradient(circle at top left, color-mix(in srgb, var(--color-hero, #3f94c4) 12%, transparent), transparent 60%), var(--card-bg, #fff);
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--color-hero, #3f94c4) 35%, transparent);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12), 0 4px 10px rgba(15, 23, 42, 0.06);
}
.article-item:hover .article__badge {
  background: color-mix(in srgb, var(--color-accent, #3c91c7) 22%, transparent);
  color: var(--color-accent, #3c91c7);
}
.page-article_title {
  padding: 0 0 1rem;
  color: #3c91c7;
}

/* ---------------------------------------------------------
   CARTE SPECIAL DEMO — PLUS LARGE
--------------------------------------------------------- */
.login-card--demo {
  max-width: 560px;
  width: 100%;
  padding: 2.5rem 2rem;
}

@media (min-width: 992px) {
  .login-card--demo {
    max-width: 620px;
    padding: 3rem 2.25rem;
  }
}
/* ---------------------------------------------------------
   INPUTS PLUS VISIBLES — DEMO UNIQUEMENT
--------------------------------------------------------- */
.login-card--demo .login-form__input {
  border: 2px solid #c7d2e1;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  background-color: #f9fbfd;
  transition: all 0.15s ease-in-out;
}

.login-card--demo .login-form__input:focus {
  border-color: #066eaa;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(6, 110, 170, 0.2);
}

/* ---------------------------------------------------------
   LABELS PLUS VISIBLES
--------------------------------------------------------- */
.login-card--demo .login-form__label {
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

/* ---------------------------------------------------------
   CHAMPS TEXTAREA EN MODE "INPUT" AMÉLIORÉ
--------------------------------------------------------- */
.login-card--demo textarea.login-form__input {
  min-height: 110px;
  resize: vertical;
}

/* ---------------------------------------------------------
   BOUTON — PLUS LARGE + PLUS PREMIUM POUR LA DEMO
--------------------------------------------------------- */
.login-card--demo .btn--primary {
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
}

.demo-alert--warning {
  background: linear-gradient(130deg, #3c91c7 60%, #4fa9ae 100%);
  color: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.demo-alert--warning p {
  color: #ffffff;
}

.page--solution {
  padding: 4rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%);
}
.page--solution .container {
  max-width: 1400px;
}

.solution-item--hero {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2.5rem 2.75rem;
  margin: 0 auto 3.5rem;
  border-radius: 24px;
  background: var(--card-bg, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
}
.solution-item--hero .solution-item__content {
  flex: 1 1 0;
}
@media (max-width: 767px) {
  .solution-item--hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
  }
}

.solution-item__breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-color, #6b7280);
  margin-bottom: 0.75rem;
}
.solution-item__title {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  margin-bottom: 0.35rem;
}
.solution-item__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.solution-item__description {
  max-width: 40rem;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1.35rem;
  color: #4b5563;
}
.solution-item__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.solution-item__pills li {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(61, 145, 198, 0.18);
  background: rgba(61, 145, 198, 0.05);
}
.solution-item__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.solution-details__intro {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}
.solution-details__title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.solution-details__intro p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted-color, #4b5563);
}

.solution-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  border-radius: 1rem;
  padding: 1.5rem 1.6rem;
  background: var(--card-bg, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.solution-card:hover {
  border-color: rgba(61, 145, 198, 0.35);
  background: radial-gradient(circle at top left, rgba(61, 145, 198, 0.08), transparent 60%), var(--card-bg, #ffffff);
}
.solution-card__title {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.solution-card__lead {
  font-size: 0.9rem;
  color: var(--muted-color, #4b5563);
  margin: 0 0 0.25rem;
}
.solution-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.solution-card__list li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}
.solution-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #3d91c6;
  opacity: 0.85;
}
.solution-card__list li:last-child {
  margin-bottom: 0;
}

.solution-cta-block {
  padding: 2rem 1.8rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(61, 145, 198, 0.12), rgba(88, 28, 135, 0.06));
  border: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
.solution-cta-block__content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}
.solution-cta-block__content p {
  margin: 0;
  max-width: 34rem;
  font-size: 0.95rem;
}
.solution-cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .solution-cta-block {
    padding: 1.5rem 1.25rem;
  }
  .solution-cta-block__content h2 {
    font-size: 1.15rem;
  }
  .solution-cta-block__actions {
    width: 100%;
  }
}

.btn.btn--ghost {
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: transparent;
  padding-inline: 1.1rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.btn.btn--ghost:hover {
  border-color: rgba(61, 145, 198, 0.35);
  background: rgba(61, 145, 198, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  .solution-card,
  .btn.btn--ghost {
    transition: none;
  }
}
/* ============================ 
   Pages "À propos" / CGU
   ============================ */
.page_about {
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 40%);
}
.page_about .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.page_about .section-title h2 {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.page_about .section-title p {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}
.page_about {
  /* Contenu global */
}
.page_about .page-about__grid {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #111827;
}
.page_about .page-about__grid p {
  margin-bottom: 0.6rem;
}
.page_about .page-about__grid ul,
.page_about .page-about__grid ol {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}
.page_about .page-about__grid ul li,
.page_about .page-about__grid ol li {
  margin-bottom: 0.2rem;
}
.page_about .page-about__grid .justify-content {
  text-align: justify;
  hyphens: auto;
}
.page_about .page-about__grid h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: #111827;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 1rem;
}
.page_about .page-about__grid dl {
  margin-bottom: 1.5rem;
}
.page_about .page-about__grid dl dt {
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.page_about .page-about__grid dl dd {
  margin-bottom: 0.5rem;
}
.page_about .page-about__grid i.ri-check-double-line {
  color: #16a34a;
  margin-right: 0.25rem;
  font-size: 0.85rem;
}
.page_about .page-about__grid i.ri-close-circle-line {
  color: #dc2626;
  margin-right: 0.25rem;
  font-size: 0.85rem;
}
.page_about {
  /* Layout colonnes */
}
.page_about .page-about__grid {
  display: block;
}
.page_about .page-about__col {
  /* au cas où tu veuilles ajouter du spacing vertical spécifique */
}
@media (min-width: 992px) {
  .page_about .page-about__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    row-gap: 0;
  }
  .page_about .page-about__col:last-child {
    border-left: 1px solid rgba(15, 23, 42, 0.05);
    padding-left: 2rem;
  }
}
.page_about {
  /* Impression propre */
}
@media print {
  .page_about {
    background: #ffffff !important;
    padding: 0;
  }
  .page_about .section-title {
    margin-bottom: 1.5rem;
  }
  .page_about .section-title h2 {
    font-size: 16px;
  }
  .page_about .page-about__grid {
    font-size: 11pt;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .page_about .page-about__col:last-child {
    border-left: 1px solid #ddd;
    padding-left: 1.5rem;
  }
  .page_about h4 {
    font-size: 16px;
    border-top: none;
    padding-top: 0.5rem;
  }
}

.docs-layout {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f7;
  color: #111827;
}

.docs {
  padding: 2.5rem 1.5rem 3rem;
}
.docs .docs-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  overflow: visible;
}
@media (max-width: 960px) {
  .docs .docs-container {
    flex-direction: column;
  }
}

.docs-main {
  flex: 1 1 0;
  min-width: 0;
}

.doc-article {
  position: relative;
  padding-top: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.doc-heading {
  position: sticky;
  top: 80px;
  z-index: 5;
  padding: 0.5rem 0;
  background: linear-gradient(to bottom, rgba(245, 245, 247, 0.98), rgba(245, 245, 247, 0.8));
  backdrop-filter: blur(4px);
}
.doc-heading h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #111827;
}
@media (max-width: 960px) {
  .doc-heading {
    position: static;
    backdrop-filter: none;
    background: transparent;
  }
}

.doc-content {
  margin-top: 1.25rem;
}
.doc-content p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #4b5563;
}

.doc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 960px) {
  .doc-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.doc-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.35rem;
}
.doc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #066eaa;
  font-weight: 700;
}

.callout {
  border-left: 5px solid #f59e0b;
  padding: 12px;
  border-radius: 12px;
  margin: 12px 0;
}

.features {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.features > li {
  list-style: none;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.4rem;
  border-radius: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.features > li::before {
  content: none !important;
  display: none !important;
}
.features > li::marker {
  content: "";
}
.features > li:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.features .dot {
  display: inline-block;
  width: 12px;
  height: 6px;
  border-radius: 999px;
  color: var(--accent-color, #f59e0b);
  background: currentColor;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12), 0 1px 0 rgba(0, 0, 0, 0.08);
}
.features .purple-shop .dot {
  color: #a10def;
  background: #a10def;
}
@supports (color: color-mix(in srgb, black 50%, white)) {
  .features .dot {
    box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 16%, transparent), 0 1px 0 rgba(0, 0, 0, 0.08);
  }
}
@media (max-width: 576px) {
  .features > li {
    grid-template-columns: 16px 1fr;
    gap: 0.6rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
  }
  .features .dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14), 0 1px 0 rgba(0, 0, 0, 0.08);
  }
}

.docs-sidebar {
  flex: 0 0 250px;
  overflow: visible;
}
@media (max-width: 960px) {
  .docs-sidebar {
    flex: 1 1 auto;
    width: 100%;
    order: -1;
  }
}

.docs-sidebar-inner {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}
@media (max-width: 960px) {
  .docs-sidebar-inner {
    position: static;
    margin-bottom: 1.5rem;
  }
}

.docs-toc-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 0.75rem;
}

.docs-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.docs-toc li + li {
  margin-top: 0.35rem;
}
.docs-toc a {
  display: block;
  font-size: 0.95rem;
  text-decoration: none;
  color: #374151;
  padding: 0.25rem 0.4rem;
  border-radius: 0.35rem;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.docs-toc a:hover {
  background: #eff6ff;
  color: #1d4ed8;
  transform: translateX(2px);
}
.docs-toc a.is-active {
  background: #1d4ed8;
  color: #fff;
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .docs-toc a,
  .features > li {
    transition: none;
  }
}
.article-user-guide {
  margin-top: 2rem;
  padding: 0.8rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(41, 91, 124, 0.04) 0%, rgba(41, 91, 124, 0.02) 100%);
  border: 1px solid rgba(41, 91, 124, 0.12);
  position: relative;
}
.article-user-guide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, rgba(41, 91, 124, 0.8) 0%, transparent 100%);
  border-radius: 12px 0 0 0;
}
.article-user-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.article-user-guide > *:first-child:not(a) {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #295b7c;
  opacity: 0.85;
  margin: 0;
}
.article-user-guide a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(41, 91, 124, 0.15);
  color: #295b7c;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}
.article-user-guide a > span:first-child {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.article-user-guide a svg {
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #295b7c;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.article-user-guide a .label {
  display: inline;
  line-height: 1.4;
  white-space: nowrap;
}
.article-user-guide a:hover {
  background: rgb(255, 255, 255);
  border-color: rgba(41, 91, 124, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41, 91, 124, 0.12), 0 2px 4px rgba(15, 23, 42, 0.06);
}
.article-user-guide a:hover svg {
  opacity: 1;
  transform: translateX(2px);
}
.article-user-guide a:focus-visible {
  outline: 2px solid rgba(41, 91, 124, 0.3);
  outline-offset: 2px;
}
@media (max-width: 640px) {
  .article-user-guide {
    padding: 1.25rem 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  .article-user-guide > *:first-child:not(a) {
    margin-bottom: 0.75rem;
  }
  .article-user-guide a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-user-guide a {
    transition: none;
  }
  .article-user-guide a svg {
    transition: none;
  }
  .article-user-guide a:hover {
    transform: none;
  }
}
.page-contentvalise {
  padding: clamp(1rem, 3vw, 2rem);
}
.page-contentvalise .valise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.page-contentvalise .valise-list article {
  background: var(--accent-color, #fff);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.page-contentvalise .valise-list article:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.page-contentvalise .valise-list article h1, .page-contentvalise .valise-list article h2, .page-contentvalise .valise-list article h3 {
  margin: 0;
}
.page-contentvalise .valise-list article p:last-child {
  margin-bottom: 0;
}

/* Tablet / Mobile */
@media (max-width: 768px) {
  .page-content .valise-list {
    grid-template-columns: 1fr;
  }
}
:root {
  --color-text-article: #000000;
}

.page-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 2.4fr);
  gap: var(--spacing-2xl);
  background: linear-gradient(90deg, #f8fafc 0%, #ffffff 100%);
}
.page-content table.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  border-collapse: collapse;
  border-color: #dee2e6;
  background-color: transparent;
  font-size: 1.2rem;
}
.page-content table.table td {
  line-height: 1.5;
}
.page-content table.table > :not(caption) > * > * {
  padding: 0.5rem;
  border-bottom: 1px solid #dee2e6;
  vertical-align: top;
}
.page-content table.table > tbody {
  border-top: 1px solid #dee2e6;
}
.page-content table.table > tbody > tr:hover > * {
  background-color: rgba(0, 0, 0, 0.03);
}
.page-content .table-wrap {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  overflow: hidden;
}
.page-content .text-center {
  text-align: center !important;
}
.page-content .text-start {
  text-align: left !important;
}

.article-list {
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.article-list article {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.article-list article:nth-child(1) {
  animation-delay: 0.05s;
}
.article-list article:nth-child(2) {
  animation-delay: 0.1s;
}
.article-list article:nth-child(3) {
  animation-delay: 0.15s;
}
.article-list article:nth-child(4) {
  animation-delay: 0.2s;
}
.article-list article:nth-child(5) {
  animation-delay: 0.25s;
}
.article-list article[id] {
  scroll-margin-top: calc(var(--header-height, 40px) + 15px);
}
.article-list article h2,
.article-list article h3 {
  font-size: clamp(1.8rem, 1.5rem + 0.6vw, 2.2rem);
  font-weight: 700;
  color: #295b7c;
  margin-bottom: 0.5rem;
}
.article-list article h4 {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
.article-list article .article-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #295b7c;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.article-list article .article-meta::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
}
.article-list article p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 0.9rem;
}
.article-list article p:last-child {
  margin-bottom: 0;
}
.article-list article ul {
  margin: 0.75rem 0 1rem 1.1rem;
  padding: 0;
  list-style: none;
}
.article-list article ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
}
.article-list article ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-accent);
}
.article-list article ul li:last-child {
  margin-bottom: 0;
}

.article-section {
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 6px rgba(15, 23, 42, 0.06);
  position: relative;
}
.article-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 999px;
  opacity: 0.9;
}
.article-section h3 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.article-section h3::before {
  content: attr(data-label);
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d4ed8;
}
.article-section p {
  margin: 0 0 0.75rem;
  line-height: 1.7;
}
.article-section p:last-child {
  margin-bottom: 0;
}
.article-section p + p {
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.08);
}

.article-law::before {
  background: rgba(245, 158, 11, 0.85);
}
.article-law h3::before {
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
  content: "Législation";
}

.article-neutral::before {
  background: transparent;
}
.article-neutral h3::before {
  color: black;
  content: "";
}

.article-erp::before {
  background: rgba(60, 145, 199, 0.85);
}
.article-erp h3::before {
  background: rgba(60, 145, 199, 0.14);
  color: #3c91c7;
  content: "ERP";
}

.article-help::before {
  background: rgba(16, 185, 129, 0.85);
}
.article-help h3::before {
  background: rgba(16, 185, 129, 0.14);
  color: #065f46;
  content: "Aide";
}

.layout-sticky {
  position: sticky;
  top: 80px;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
}

.article-toc {
  background-color: var(--color-bg-primary);
  border-radius: 0.3rem;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  font-weight: 600;
}
.article-toc h3 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}
.article-toc nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.article-toc a {
  display: block;
  padding: 0.3rem 0.4rem;
  marging: 0.05rem 0;
  border-radius: 0.35rem;
  font-size: 1.1rem;
  color: var(--color-hero);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.article-toc a:hover {
  background: rgb(from var(--color-hero) r g b/0.05);
  transform: translateX(2px);
}
.article-toc a.active {
  background: rgb(from var(--color-hero) r g b/0.05);
  transform: translateX(2px);
}

.article-valise {
  background-color: var(--color-bg-primary);
  border-radius: 0.3rem;
  padding: 1rem;
  border: 1px dashed rgba(15, 23, 42, 0.15);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.article-valise .toc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-valise h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}
.article-valise nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.article-valise a {
  display: block;
  padding: 0.2rem 0.6rem;
  border-radius: 0.35rem;
  font-size: 0.9rem;
  color: #334155;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.article-valise a:hover {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  transform: translateX(2px);
}
.article-valise a.active {
  background: rgba(15, 23, 42, 0.1);
  font-weight: 600;
  transform: translateX(2px);
}

.who {
  padding: 2rem 0;
}
.who__title {
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  margin: 0 0 1rem;
}
.who__grid {
  --gap: 1rem;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 992px) {
  .who__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .who__grid {
    grid-template-columns: 1fr;
  }
}
.who__card {
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.who__card b {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  transition: color 0.25s ease;
}
.who__card p {
  margin: 0;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.25s ease;
}
.who__card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(116, 192, 252, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.04);
}
.who__card:hover b {
  color: rgba(0, 0, 0, 0.95);
}
.who__card:hover p {
  color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 960px) {
  .page-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-md);
  }
  .layout-sticky {
    position: static;
    top: auto;
    height: auto;
    z-index: auto;
  }
  .article-toc {
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
  }
  .article-list {
    z-index: 2;
    background: var(--color-bg-primary);
    border-radius: 0.75rem;
    padding: 0.25rem 0;
  }
}
@media (max-width: 640px) {
  .page-content {
    padding-inline: var(--spacing-sm);
  }
  .article-list article {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  .article-list article h2 {
    font-size: 1.5rem;
  }
  .article-list article .article-section {
    padding: 0.9rem;
    border-radius: 0.65rem;
  }
  .article-list article .article-section h3 {
    font-size: 0.9rem;
  }
  .article-list article .article-section h3::before {
    height: 20px;
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .article-list article,
  .article-toc a,
  .article-valise a,
  .who__card {
    animation: none;
    transition: none;
  }
}
/* ============================================
   LOGIN SECTION - Formulaire de connexion
   ============================================ */
.section--login {
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 40%, #ffffff 100%);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}
[data-theme=dark] .section--login {
  background: linear-gradient(135deg, #020617 0%, #0f172a 40%, #020617 100%);
}
.section--login::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.15) 0, transparent 55%), radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.15) 0, transparent 55%);
  pointer-events: none;
}

/* Layout */
.login {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--spacing-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
  /* Colonne gauche : intro */
}
.login__badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(59, 130, 246, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-bottom: var(--spacing-sm);
}
[data-theme=dark] .login__badge {
  background: rgba(59, 130, 246, 0.18);
  color: #bfdbfe;
  border-color: rgba(96, 165, 250, 0.5);
}
.login__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-primary);
}
.login__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  max-width: 32rem;
}
.login__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 26rem;
}
.login__benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-primary);
}
.login__benefits li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
  flex-shrink: 0;
}

/* Colonne droite : carte + formulaire */
.login-card {
  background-color: var(--color-bg-primary);
  border-radius: 24px;
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  margin-left: auto;
  position: relative;
  overflow: hidden;
}
.login-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}
.login-card > * {
  position: relative;
  z-index: 1;
}
.login-card__header {
  margin-bottom: var(--spacing-lg);
}
.login-card__title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-text-primary);
}
.login-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

/* Formulaire */
.login-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.login-form__message {
  min-height: 1.25rem;
  margin: 0 0 0.25rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-align: center;
  color: var(--color-error);
}
.login-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.login-form__field input.login-form__input {
  border: none;
  background-color: var(--color-bg-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}
.login-form__label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
}
.login-form__input-group {
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-primary);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}
.login-form__input-group:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(61, 145, 198, 0.15);
  background-color: var(--color-bg-primary);
}
.login-form__input-group.is-invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.15);
}
.login-form__input-group.is-invalid ~ .login-form__error {
  display: block;
}
.login-form__input-prefix {
  padding: 0.65rem 0.8rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  border-right: 1px solid var(--color-border);
}
.login-form__input {
  flex: 1;
  border: none;
  padding: 0.65rem 0.9rem;
  font-size: var(--font-size-sm);
  background: transparent;
  color: var(--color-text-primary);
  outline: none;
}
.login-form__input::-moz-placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}
.login-form__input::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}
.login-form__input.is-invalid {
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.15);
}
.login-form__input.is-invalid + .login-form__error {
  display: block;
}
.login-form__error {
  display: none;
  font-size: var(--font-size-xs);
  color: var(--color-error);
}
.login-form {
  /* Options : remember + mot de passe oublié */
}
.login-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.login-form__link {
  font-size: var(--font-size-sm);
  text-decoration: none;
  color: var(--color-accent);
}
.login-form__link:hover {
  text-decoration: underline;
}
.login-form {
  /* Bouton */
}
.login-form__submit {
  margin-top: var(--spacing-sm);
  width: 100%;
  justify-content: center;
}
.login-form {
  /* Pied du formulaire */
}
.login-form__footer {
  margin-top: var(--spacing-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-align: center;
}
.login-form__footer a {
  font-weight: 600;
}

/* Checkbox stylée */
.login-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.login-checkbox__input {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  display: inline-block;
  position: relative;
  background-color: var(--color-bg-primary);
  transition: all var(--transition-fast);
}
.login-checkbox__input:checked {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(61, 145, 198, 0.2);
}
.login-checkbox__input:checked::after {
  content: "";
  position: absolute;
  inset: 2px 4px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}
.login-checkbox__input:focus-visible {
  box-shadow: 0 0 0 2px rgba(61, 145, 198, 0.4);
}
.login-checkbox__label {
  line-height: 1.2;
}

/* ============================================
   RESPONSIVE - LOGIN
   ============================================ */
.login-card__demo {
  margin-top: 2rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  text-align: center;
}

.login-card__demo-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #3c4c6a;
}

.login-card__demo-text {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #53627c;
}

.login-card__demo-btn {
  display: inline-block;
  width: 100%;
  padding: 0.75rem;
  font-weight: 600;
}

.login-card__demo-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #6c7a92;
}

@media (max-width: 1024px) {
  .login {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  .login-card {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .section--login {
    padding: var(--spacing-xl) 0;
  }
  .login__title {
    font-size: 2rem;
  }
  .login__subtitle {
    font-size: var(--font-size-base);
  }
  .login-card {
    padding: var(--spacing-lg);
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .login__title {
    font-size: 1.75rem;
  }
  .login-card {
    padding: var(--spacing-md);
    border-radius: 18px;
  }
  .login-form__options {
    flex-direction: column;
    align-items: flex-start;
  }
  .login-form__link {
    align-self: flex-start;
  }
}
/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #000;
  color: #ffffff;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 1440 50%27%3E%3Cpath fill=%27%231e3a8a%27 d=%27M0,25L60,20C120,15,240,5,360,10C480,15,600,35,720,40C840,45,960,35,1080,25C1200,15,1320,5,1380,0L1440,0L1440,50L1380,50C1320,50,1200,50,1080,50C960,50,840,50,720,50C600,50,480,50,360,50C240,50,120,50,60,50L0,50Z%27%3E%3C/path%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer__about .footer__logo {
  margin-bottom: 1.25rem;
}
.footer__about .footer__logo img {
  height: 40px;
  width: auto;
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.footer__social .social-icon:hover {
  background: #60a5fa;
  color: #fff;
  transform: translateY(-3px);
}
.footer__social .social-icon svg {
  width: 18px;
  height: 18px;
}

.footer__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, transparent);
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: 0.75rem;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 0;
}
.footer__links a::before {
  content: "›";
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.footer__links a:hover {
  color: #60a5fa;
  padding-left: 0.75rem;
}
.footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer__contact-item:hover {
  color: #60a5fa;
}
.footer__contact-item svg {
  flex-shrink: 0;
  color: #60a5fa;
  margin-top: 2px;
}

.footer__jefacture {
  grid-column: 4/span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .footer__jefacture {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .footer__jefacture {
    grid-column: span 1;
  }
}
.footer__jefacture a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.footer__jefacture a:hover {
  transform: scale(1.05);
}
.footer__jefacture a:hover .footer__jefacture-text strong {
  color: #60a5fa;
}
.footer__jefacture a img {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer__jefacture-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer__jefacture-text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer__jefacture-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer__bottom {
  padding: 2rem 0;
  text-align: center;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }
  .footer__jefacture a {
    gap: 0.5rem;
  }
}
/* ============================================
   RESPONSIVE
   ============================================ */
/* Tablette */
@media (max-width: 1024px) {
  .faq__title {
    font-size: 2.25rem;
  }
  .faq__grid {
    gap: var(--spacing-lg);
  }
  .faq-card {
    padding: var(--spacing-lg);
  }
  .faq-card__icon {
    font-size: 2rem;
  }
  .faq-card__question {
    font-size: var(--font-size-lg);
  }
}
/* Mobile */
@media (max-width: 768px) {
  .section--faq::before,
  .section--faq::after {
    display: none;
  }
  .faq__title {
    font-size: 2rem;
  }
  .faq__subtitle {
    font-size: var(--font-size-base);
  }
  .faq__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .faq__column {
    gap: var(--spacing-md);
  }
  .faq-card {
    padding: var(--spacing-lg);
  }
  .faq-card__icon {
    font-size: 1.75rem;
  }
  .faq-card__question {
    font-size: var(--font-size-base);
  }
  .faq-card__answer {
    font-size: var(--font-size-sm);
  }
  .faq__footer {
    padding: var(--spacing-lg);
  }
  .faq__footer-text {
    font-size: var(--font-size-base);
  }
  .faq__footer-actions {
    flex-direction: column;
    width: 100%;
  }
  .faq__footer-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* Petits mobiles */
@media (max-width: 480px) {
  .faq__title {
    font-size: 1.75rem;
  }
  .faq-card {
    padding: var(--spacing-md);
  }
  .faq-card__icon {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
  }
  .faq-card__question {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
  }
}
/* ============================================
   VARIANTES DE COULEURS (optionnel)
   ============================================ */
/* Vous pouvez ajouter des classes de variantes pour colorer certaines cartes */
.faq-card--highlight {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #93c5fd;
}

[data-theme=dark] .faq-card--highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-color: rgba(96, 165, 250, 0.3);
}

/* ============================================
   11. UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ============================================
   12. RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .badge-float--top {
    right: 5%;
  }
  .badge-float--bottom {
    left: 5%;
  }
  .solutions {
    grid-template-columns: 1fr;
  }
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .pricing-card--featured {
    transform: scale(1);
  }
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__column--main {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  :root {
    --header-height: auto;
    --font-size-5xl: 2.25rem;
    --font-size-4xl: 2rem;
  }
  .nav {
    flex-wrap: wrap;
    padding: 0.75rem 0;
  }
  .nav__menu {
    width: 100%;
    flex-direction: column;
    order: 2;
    gap: 0;
  }
  .nav__actions {
    order: 1;
  }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    margin-top: 0;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
    padding: 0;
  }
  .nav__item--dropdown.active .nav__dropdown {
    max-height: 500px;
    padding: 0.5rem 0;
  }
  .nav__dropdown-link {
    padding-left: 2rem;
  }
  .badge-float {
    padding: 0.5rem 0.75rem;
  }
  .badge-float__icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .badge-float__value {
    font-size: 1rem;
  }
  .solution-card {
    padding: 2rem;
  }
  .solution-card__arrow {
    top: 2rem;
    right: 2rem;
  }
  .services {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .service-card {
    padding: var(--spacing-lg);
  }
  .section--pricing {
    padding: 3rem 0;
  }
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__column--main {
    grid-column: span 1;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer__settings {
    flex-direction: column;
    width: 100%;
  }
  .footer__select {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .solution-card__title {
    font-size: var(--font-size-xl);
  }
  .pricing-card__price {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=script.e4931274dd537e378968.min.css.map*/