[x-cloak] {
  display: none !important;
}

/* Atomes (Variables) */
:root {
  /* Colors */
  --c-white: #FFFFFF;
  --c-black: #000000;
  --c-cream: #faf9f9;
  --c-dark: #060213;
  --c-notiss-grey: #F9F8F6;
  --c-blue-cta: #AFEDFF;
  --c-blue-accent1: #9BE9FF;
  --c-blue-accent2: #C9F3FF;
  --c-blue-accent3: #8DE6FF;
  --c-tuka-accent1: #E1C09E;
  --c-tuka-accent2: #E9A973;
  --c-tuka-accent3: #DE8D4B;
  --c-tuka-accent4: #C05B21;
  --c-card-base: #F8F8F8;
  --c-card-accent: #E7FAFF;
  --c-notiss-dark: #090514;
  --c-notiss-soft-dark: #3B3B3B;

  /* Grouped Colors & Compatibility Mapping (Cleaned & Updated) */
  --c-acid: var(--c-blue-cta);
  --c-lime: var(--c-blue-cta);
  --c-coral: var(--c-tuka-accent4);
  --c-baby-blue: var(--c-blue-accent1);
  --c-muted: #6B5F4E;
  --c-red: #E8544D;
  --c-card-green: var(--c-card-base);
  --c-card-burg: var(--c-notiss-dark);
  --c-card-blue: var(--c-card-accent);

  /* Custom Opacities and Page-Specific Colors */
  --c-baby-blue-20: rgba(155, 233, 255, 0.2);
  --c-coral-10: rgba(192, 91, 33, 0.1);
  --c-acid-10: rgba(122, 218, 245, 0.1);
  --c-dark-purple: #151617;
  --c-coral-light: #FDF6F0;
  --c-coral-shadow: rgba(192, 91, 33, 0.10);
  --c-coral-shadow-hover: rgba(192, 91, 33, 0.12);

  /* Gradients */
  --nav-gradient: linear-gradient(to bottom right, #F4F6FC, #FFF1E6);
  --main-gradient: linear-gradient(135deg, #F4F6FC, #FFF1E6);

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Molecules & Organisms (Composants) */

/* Layout & Utils */
.nav-bg {
  background: var(--nav-gradient);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Typographie */
.title-main {
  font-family: var(--font-heading);
  font-weight: 550;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.title-h3 {
  font-family: var(--font-heading);
  font-weight: 1000;
  font-size: 1.8rem;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}


.text-qms {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: justify;
}

.text-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 400;
}

.text-body-lg {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 400;
}

.text-body-sm {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
}

/* Liens */
.nav-link {
  color: var(--c-dark);
  font-size: 0.95rem;
  font-weight: 400;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.6;
}

.action-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.action-link:hover {
  opacity: 1;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--c-blue-cta);
  color: var(--c-black);
  padding: 12px 32px;
  font-weight: 500;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background-color: #59D3F2;
}

.btn-demo {
  background-color: var(--c-blue-cta);
  color: var(--c-black);
  padding: 3px 12px 3px 12px;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 16px;
  justify-content: space-between;
  margin-top: 3rem;
}

.btn-demo-lg {
  background-color: var(--c-blue-cta);
  color: var(--c-black);
  padding: 12px 20px 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  gap: 16px;
  justify-content: space-between;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.btn-demo:hover,
.btn-demo-lg:hover {
  background-color: #59D3F2;
}

.btn-coral {
  background-color: var(--c-tuka-accent4);
  color: var(--c-white);
  padding: 14px 20px 14px 40px;
  justify-content: space-between;
  gap: 20px;
}

.btn-coral:hover {
  background-color: var(--c-tuka-accent3);
}

.btn-action {
  background-color: var(--c-white);
  color: var(--c-black);
  padding: 12px 36px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.btn-action:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 24px;
  height: 24px;
  background-color: var(--c-white);
  color: var(--c-black);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .icon-circle {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}


.icon-circle-lg {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.icon-app {
  width: 32px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Cartes */
.card {
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
}

.card-feature {
  background-color: #fafafa;
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.card-feature p {
  line-height: 1.3em;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
  .card-icon {
    height: 90%;
  }
}

.card-action {
  background-color: #F4F5F8;
  border-radius: var(--radius-md);
  padding: 20px;
  color: var(--c-black);
  min-height: unset;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .card-action {
    padding: 24px;
    min-height: 280px;
  }
}

/* Badges */
.badge-stat {
  color: var(--c-black);
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.badge-stat:hover {
  background-color: var(--c-black);
  color: var(--c-white);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  margin-left: 0;
  margin-right: 0;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0;
  margin-right: 0;
}

/* Ticker */
.ticker-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.ticker-img {
  max-width: 110px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.ticker-img:hover {
  opacity: 1;
}

.ticker-img-sm {
  height: 26px;
}

.ticker-img-md {
  height: 42px;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.animate-ticker {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  backface-visibility: hidden;
  animation: ticker 45s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .animate-ticker {
    animation: none;
  }
}

/* FAQ */
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--c-black);
  letter-spacing: -0.01em;
  gap: 2rem;
}

.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translateY(-50%);
}

.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: currentColor;
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Footer */
.footer-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-white);
  margin-bottom: 0.75rem;
  text-align: left;
}

.footer-link {
  font-size: 0.95rem;
  color: var(--c-white);
  opacity: 0.85;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-bottom: 0.75rem;
}

.footer-link:hover {
  opacity: 1;
}

/* Custom Header & Navigation */
.nav-link {
  font-weight: 500;
  padding-bottom: 4px;
}

.nav-link.active {
  font-weight: 700;
  color: var(--c-black) !important;
  box-shadow: 0 2.5px 0 0 var(--c-blue-cta);
}

.nav-link-trigger {
  cursor: default !important;
}

.nav-link-trigger:hover {
  opacity: 1 !important;
}

/* Header Dropdown Menu Styles */
.nav-dropdown {
  position: absolute;
  left: 0;
  background-color: var(--c-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 0.625rem 0;
  z-index: 50;
}

.nav-dropdown-w-64 {
  width: 16rem;
}

.nav-dropdown-w-80 {
  width: 20rem;
}

.nav-dropdown-link {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
}

.nav-dropdown-link:hover {
  color: var(--c-black);
  background-color: rgba(0, 0, 0, 0.02);
}


.nav-btn-member {
  display: inline-flex;
  align-items: center;
  background-color: var(--c-blue-cta);
  padding: 0.375rem;
  /* 6px */
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.nav-btn-member:hover {
  background-color: #59D3F2;
}

.nav-btn-member .avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-white);
  width: 2.75rem;
  /* w-11 = 44px */
  height: 2.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.nav-btn-member .avatar-circle {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
}

.nav-btn-member .avatar-circle svg {
  width: 0.875rem;
  /* w-3.5 = 14px */
  height: 0.875rem;
}

.nav-btn-member .btn-label {
  padding-left: 1.25rem;
  /* px-5 = 20px */
  padding-right: 1.25rem;
  color: var(--c-black);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  /* text-sm */
  letter-spacing: 0.025em;
  /* tracking-wide */
}

/* Custom Hero Section */
.hero-section {
  padding-top: 80px;
  padding-bottom: 40px;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: transparent;
  text-align: center;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
  }
}

.title-h1 {
  font-family: var(--font-heading);
  font-weight: 550;
  margin-top: 0;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .title-h1 {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .title-h1 {
    margin-bottom: 2rem;
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .title-h1 {
    font-size: 3rem;
    line-height: 1.25;
  }
}

.subtitle-main {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.3;
  margin-top: 2rem;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .subtitle-main {
    margin-top: 6rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .subtitle-main {
    font-size: 1.875rem;
  }
}

.card-qms-overview {
  background-color: var(--c-notiss-dark);
  color: var(--c-white);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.card-qms-overview .eyebrow {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.card-qms-overview h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.125rem;
}

.card-qms-overview h2 span {
  font-size: 1.65rem;
  line-height: 1.25;
}

.card-qms-overview p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4;
  text-align: justify;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.card-qms-overview .btn-demo {
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .card-qms-overview {
    padding: 2rem;
  }

  .card-qms-overview .eyebrow {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }

  .card-qms-overview h2 {
    font-size: 1.15rem;
  }

  .card-qms-overview h2 span {
    font-size: 1.85rem;
  }

  .card-qms-overview p {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .card-qms-overview .btn-demo {
    margin-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .card-qms-overview {
    padding: 2.25rem;
  }

  .card-qms-overview .eyebrow {
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }

  .card-qms-overview h2 {
    font-size: 1.2rem;
  }

  .card-qms-overview h2 span {
    font-size: 2rem;
  }

  .card-qms-overview p {
    font-size: 1.125rem;
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .card-qms-overview .btn-demo {
    margin-top: 2rem;
  }
}

@media (min-width: 1280px) {
  .card-qms-overview {
    padding: 2.5rem;
  }

  .card-qms-overview .eyebrow {
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
  }

  .card-qms-overview h2 {
    font-size: 1.25rem;
  }

  .card-qms-overview h2 span {
    font-size: 2.25rem;
  }

  .card-qms-overview p {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }

  .card-qms-overview .btn-demo {
    margin-top: 3rem;
  }
}

/* Fallback and responsive sizes for vision section */
#vision-title-container img {
  width: 130px;
  height: auto;
}

#vision-title-container h2 {
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  #vision-title-container img {
    width: 160px;
  }

  #vision-title-container h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  #vision-title-container img {
    width: 200px;
  }

  #vision-title-container h2 {
    font-size: 3rem;
  }
}



.vision-content-container {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  /* px-6 */
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .vision-content-container {
    padding-left: 2.5rem;
    /* lg:px-10 */
    padding-right: 2.5rem;
    flex-direction: row;
    gap: 0;
    margin-top: -340px;
    /* lg:-mt-[340px] */
  }
}

.card-feature {
  width: 100%;
  /* Factorized from w-full */
}

.card-icon span {
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--c-white);
  color: var(--c-black);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .card-icon span {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
}

.card-feature h3 {
  font-family: var(--font-heading);
  font-weight: 550;
  margin: 0;
  line-height: 1;
  font-size: 1.2rem;
  color: var(--c-black);
  margin-bottom: 0.2rem;
  /* mb-1.5 */
}

.card-feature p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}

.discover-functions-container {
  text-align: center;
  padding: 2.5rem;
  /* py-10 px-10 */
  padding-bottom: 100px;
  margin-top: 2rem;
  /* mt-8 */
}

.btn-discover-functions {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--c-blue-cta);
  color: var(--c-black);
  padding-top: 0.4rem;
  /* py-3 = 12px */
  padding-bottom: 0.4rem;
  padding-left: 0.4rem;
  /* pl-12 = 48px */
  padding-right: 0.1rem;
  /* pr-2 = 8px */
  border-radius: 1rem;
  /* rounded-4xl = 32px */
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* shadow-sm */
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
}

.btn-discover-functions:hover {
  background-color: #59D3F2;
  transform: translateY(-1px);
}

.btn-discover-functions span:first-child {
  font-weight: 700;
  font-size: 1.1rem;
  /* text-xl */
  flex: 1;
  text-align: center;
  margin-top: 0.7rem;
  /* mt-3 */
  margin-bottom: 0.7rem;
}

.btn-discover-functions span:last-child {
  width: 3rem;
  /* w-12 */
  height: 3rem;
  /* h-12 */
  background-color: var(--c-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  /* text-2xl */
  flex-shrink: 0;
  margin-right: 1rem;
  /* mr-8 */
}

/* Custom Action Section V2 */
.card-action p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 400;
  margin-top: 1rem;
  /* mt-4 */
  margin-bottom: 1rem;
  /* mb-4 */
}

@media (min-width: 640px) {
  .card-action p {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.card-action .action-link {
  margin-top: auto;
  align-self: flex-end;
  color: var(--c-black);
}

.card-action .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .card-action .card-header {
    display: block;
  }
}

.card-action .icon-app {
  margin-bottom: 0;
  color: var(--c-black);
}

@media (min-width: 640px) {
  .card-action .icon-app {
    margin-bottom: 1.25rem;
  }
}

/* Custom Reason Section */
.reason-header-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  margin: 0;
}

@media (min-width: 768px) {
  .reason-header-col {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .reason-header-col {
    grid-column: span 2 / span 2;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-right: 0;
  }

  .reason-header-col h2,
  .reason-header-col p {
    max-width: 100%;
    width: 100%;
  }
}

.reason-header-col .eyebrow {
  margin-bottom: 0.75rem;
  /* Reduced from 1.5rem for mobile */
  font-size: 1.125rem;
  /* text-lg */
}

@media (min-width: 768px) {
  .reason-header-col .eyebrow {
    margin-bottom: 1.5rem;
  }
}

.reason-header-col h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  /* mb-8 */
  font-size: 2rem;
  /* Reduced from 3rem for mobile */
}

@media (min-width: 768px) {
  .reason-header-col h2 {
    font-size: 3rem;
  }
}

.reason-header-col p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 600;
  text-align: justify;
  margin: 1rem 0 0 0;
  /* Reduced from 2rem for mobile */
}

@media (min-width: 768px) {
  .reason-header-col p {
    font-size: 1.2rem;
    line-height: 1.25;
    margin: 2rem 0 0 0;
  }
}

/* Overrides cleaned up */

.card-reason {
  border-radius: 0;
  padding: 2rem;
  /* p-8 */
  display: flex;
  flex-direction: column;
}

.card-reason h3 {
  font-family: var(--font-heading);
  font-weight: 1000;
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.25;
}

.card-reason p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 1.25rem;
  /* mb-5 */
  opacity: 0.85;
}

.card-reason p:first-of-type {
  margin-top: 3rem;
  /* mt-12 */
}

.card-reason a.btn-action {
  margin-top: auto;
  align-self: flex-end;
  padding: 8px 24px;
  /* p-2 pl-6 pr-6 override */
}

.card-reason .mockup-container {
  margin-top: auto;
  background-color: var(--c-white);
  border-radius: 0.75rem;
  /* rounded-xl */
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* border-black/10 */
  overflow: hidden;
}

.card-reason img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.card-reason .key-stats {
  margin-bottom: 2rem;
  /* mb-8 */
  color: var(--c-black);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.2;
}

.card-reason .key-stats ul {
  margin-top: 0.3rem;
  /* mt-3 */
  padding-left: 1rem;
  /* pl-4 */
  list-style-type: disc;
  font-weight: 500;
  line-height: 1.4;
}

.card-reason .key-stats li {
  margin-bottom: 0.5rem;
  line-height: 0.9;
  /* space-y-2 */
}

.card-reason .key-stats li:last-child {
  margin-bottom: 0;
}

/* Custom FAQ Layout */
.faq-list>div {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 0.75rem;
  /* py-3 */
  padding-bottom: 0.75rem;
}

.faq-list>div:first-child {
  border-top: none;
}

.faq-list>div:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.40;
  transition: opacity 0.25s ease;
}

.faq-btn:hover .faq-icon {
  opacity: 0.80;
}

.faq-content {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-content p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.125rem;
  /* text-lg */
  text-align: justify;
  opacity: 0.85;
  margin: 0;
  padding-bottom: 0.25rem;
  /* pb-1 */
  line-height: 1.25;
  /* leading-tight */
}

@media (max-width: 767px) {
  .faq-btn {
    padding: 1rem 0;
    gap: 1.25rem;
    font-size: 1.1rem;
  }

  .faq-list>div {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .faq-content p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* Custom Footer Layout */
.footer-main {
  background-color: var(--c-black);
  color: var(--c-white);
  padding-top: 3rem;
  /* py-12 */
  padding-bottom: 3rem;
  padding-left: 1.25rem;
  /* px-5 */
  padding-right: 1.25rem;
  width: 100%;
  font-family: var(--font-sans);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .footer-main {
    padding-left: 2.5rem;
    /* md:px-10 */
    padding-right: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    padding-left: 4rem;
    /* lg:px-16 */
    padding-right: 4rem;
    padding-bottom: 2.5rem;
    /* lg:pb-10 */
  }
}

.footer-newsletter {
  background-color: var(--c-blue-cta);
  border-radius: 0.25rem;
  /* rounded */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 2rem;
  /* p-8 */
  gap: 1.5rem;
  /* gap-6 */
  margin-bottom: 5.625rem;
  /* mb-[90px] */
}

@media (min-width: 1024px) {
  .footer-newsletter {
    flex-direction: row;
    align-items: center;
    padding: 2.25rem 2.75rem;
    /* lg:py-9 lg:px-11 */
    gap: 2.5rem;
    /* lg:gap-10 */
  }
}

.footer-newsletter p {
  color: var(--c-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  /* text-2xl */
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-newsletter p {
    text-align: left;
  }
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .footer-newsletter form {
    max-width: 500px;
  }
}

.footer-newsletter .newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .footer-newsletter .newsletter-input-group {
    flex-direction: row;
  }
}

.footer-newsletter .cf-turnstile {
  align-self: center;
}

@media (min-width: 640px) {
  .footer-newsletter .cf-turnstile {
    align-self: flex-end;
  }
}

.footer-newsletter input[type="email"] {
  background-color: var(--c-white);
  border: none;
  border-radius: 0.375rem;
  /* rounded-md */
  padding: 1rem 1.25rem;
  /* py-4 px-5 */
  font-size: 0.95rem;
  color: var(--c-black);
  width: 100%;
}

.footer-newsletter input[type="email"]:focus {
  outline: none;
}

.footer-newsletter button[type="submit"] {
  background-color: var(--c-black);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius-full);
  padding: 1rem 2rem;
  /* py-4 px-8 */
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.footer-newsletter button[type="submit"]:hover {
  opacity: 0.9;
}

@media (max-width: 767px) {
  .footer-newsletter {
    padding: 1.25rem;
    margin-bottom: 3.5rem;
    gap: 1.25rem;
  }

  .footer-newsletter p {
    font-size: 1.2rem;
  }

  .footer-newsletter input[type="email"] {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-full);
  }

  .footer-newsletter button[type="submit"] {
    padding: 0.85rem 2.25rem;
  }
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  /* gap-9 */
  padding-bottom: 3.75rem;
  /* pb-[60px] */
}

@media (min-width: 640px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 2.5rem;
    /* lg:gap-10 */
  }
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-col img {
  width: 150px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  /* mb-5 */
}

.footer-logo-col p {
  color: var(--c-white);
  margin: 0;
  text-align: left;
  font-size: 1.5rem;
  /* text-2xl */
}

.footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-contact-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  /* border-white/15 */
  padding-top: 2.5rem;
  /* py-10 */
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  /* gap-7 */
}

@media (min-width: 640px) {
  .footer-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-contact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    /* lg:gap-8 */
  }
}

.footer-contact-grid p.footer-title {
  margin-bottom: 0.75rem;
  /* mb-3 override */
}

.footer-contact-grid p.text-body {
  color: var(--c-white);
  margin: 0;
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  padding-bottom: 10px;
  /* pb-2.5 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  /* gap-3 */
  text-align: center;
  font-size: 0.88rem;
  color: var(--c-white);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--c-white);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ══════════ CONTACT FORM CUSTOM INPUTS ══════════ */
.contact-input-box {
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 0.45rem 1rem;
  display: flex;
  flex-direction: column;
  background-color: var(--c-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact-input-box:focus-within {
  border-color: var(--c-black);
}

.contact-input-box label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.125rem;
  pointer-events: none;
}

.contact-input-box label span {
  color: #ff3333;
}

.contact-input-box input,
.contact-input-box select,
.contact-input-box textarea {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--c-black);
  width: 100%;
  box-shadow: none !important;
}

.contact-input-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: 1.1em !important;
  padding-right: 1.5rem !important;
}

.contact-input-box textarea {
  resize: none;
  height: 24px;
  transition: height 0.3s ease-in-out;
}

/* ══════════ PRICING CARDS ══════════ */
.pricing-card {
  background-color: var(--c-white);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: auto;
  color: var(--c-black);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .pricing-card {
    min-height: 440px;
  }
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

.pricing-card-highlighted {
  background-color: var(--c-blue-accent2);
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 0.5rem;
  display: block;
}

@media (min-width: 768px) {
  .pricing-card-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
}

.pricing-card-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-black);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pricing-card-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
}

.pricing-card-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--c-black);
  display: block;
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .pricing-card-section-title {
    font-size: 0.85rem;
    margin-top: 1.75rem;
  }
}

.pricing-card-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pricing-card-divider {
    margin-bottom: 0.75rem;
  }
}

.pricing-card-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .pricing-card-desc {
    font-size: 1rem;
    margin-left: 0.75rem;
  }
}

.pricing-card-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .pricing-card-list {
    margin-left: 0.75rem;
  }
}

.pricing-card-list-item {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-black);
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pricing-card-list-item {
    font-size: 0.95rem;
    padding-left: 1.25rem;
    margin-bottom: 0.6rem;
  }
}

.pricing-card-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--c-black);
}

.pricing-card-sublist {
  list-style-type: none;
  padding-left: 1rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .pricing-card-sublist {
    padding-left: 1.25rem;
  }
}

.pricing-card-sublist-item {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .pricing-card-sublist-item {
    font-size: 0.95rem;
    padding-left: 1rem;
    margin-bottom: 0.3rem;
  }
}

.pricing-card-sublist-item::before {
  content: "•";
  position: absolute;
  left: 0;
}

/* ══════════ REFACTORING PRICING & CONTAINERS ══════════ */
.container-custom {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  /* px-6 */
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .container-custom {
    padding-left: 2.5rem;
    /* md:px-10 */
    padding-right: 2.5rem;
  }
}

.bg-notiss-grey {
  background-color: var(--c-notiss-grey);
}

/* Toggle Indépendant vs Groupe */
.toggle-container {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 640px) {
  .toggle-container {
    margin-top: 3.5rem;
    margin-bottom: 4rem;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1024px) {
  .toggle-container {
    margin-top: 100px;
  }
}

.toggle-wrapper {
  background-color: var(--c-white);
  padding: 0.25rem;
  /* p-1 */
  border-radius: 8px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  width: 100%;
}

.toggle-btn {
  flex: 1 1 0%;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.2;
  text-transform: uppercase;
  border-radius: 8px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  white-space: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .toggle-btn {
    font-size: 1rem;
    white-space: nowrap;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (min-width: 768px) {
  .toggle-btn {
    font-size: 1.1rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
}

.toggle-btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.toggle-btn-active {
  background-color: var(--c-blue-cta);
  font-weight: 600;
}

.toggle-btn-inactive {
  font-weight: 600;
}

.toggle-btn-inactive:hover {
  transform: scale(1.02);
}

.toggle-mascot {
  position: absolute;
  right: -5rem;
  /* -right-20 */
  top: -85px;
  /* -top-[85px] */
  display: none;
  width: 160px;
  height: auto;
  pointer-events: none;
  z-index: 20;
}

@media (min-width: 1024px) {
  .toggle-mascot {
    display: block;
  }
}

/* Texte dynamique groupe */
.group-text-block {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  /* px-6 */
  padding-right: 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  /* mb-10 */
}

@media (min-width: 768px) {
  .group-text-block {
    margin-bottom: 4rem;
  }
}

.group-text-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.5rem;
  /* text-2xl */
  color: var(--c-black);
  line-height: 1.25;
  /* leading-tight */
  margin-bottom: 1.5rem;
  /* mb-6 */
}

@media (min-width: 768px) {
  .group-text-title {
    font-size: 1.875rem;
    /* md:text-3xl */
  }
}

.group-text-para {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  /* text-[1.05rem] */
  font-weight: 400;
  line-height: 1.625;
  /* leading-relaxed */
  color: rgba(0, 0, 0, 0.7);
  /* text-black/70 */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.group-text-para:not(:last-child) {
  margin-bottom: 1rem;
  /* mb-4 */
}

/* Pricing Grid & Cards Adjustments */
.pricing-cards-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .pricing-cards-container {
    flex-direction: row;
    max-width: 100%;
  }
}

.pricing-cards-container>* {
  border-color: rgba(0, 0, 0, 0.08);
  border-style: solid;
  border-width: 0;
}

.pricing-cards-container>*+* {
  border-top-width: 1px;
}

@media (min-width: 1024px) {
  .pricing-cards-container>*+* {
    border-top-width: 0;
    border-left-width: 1px;
  }
}

.pricing-card {
  border-radius: 0;
}

.pricing-card-highlighted {
  position: relative;
}

/* CTA Pill Buttons with Icon */
.btn-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background-color: var(--c-blue-cta);
  color: var(--c-black);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  /* text-sm */
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0.875rem 1.75rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* shadow-sm */
  border: none;
  cursor: pointer;
  text-decoration: none;
}

@media (min-width: 640px) {
  .btn-pill-icon {
    gap: 2.5rem;
    padding: 1rem 2.5rem;
  }
}

.btn-pill-icon:hover {
  background-color: #59D3F2;
}

.btn-pill-icon .btn-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  /* w-8 */
  height: 2rem;
  background-color: var(--c-white);
  color: var(--c-black);
  border-radius: var(--radius-full);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* shadow-sm */
  flex-shrink: 0;
}

.btn-pill-icon .btn-icon-circle svg {
  width: 1rem;
  /* w-4 */
  height: 1rem;
}

/* Slides Section / Carousel */
.slides-section {
  background-color: #f9fafb;
  /* bg-gray-50 */
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* border-black/[0.05] */
}

@media (min-width: 768px) {
  .slides-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.slides-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* gap-6 */
  margin-bottom: 1.5rem;
  /* mb-6 */
}

@media (min-width: 768px) {
  .slides-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.slides-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* gap-2 */
  padding: 0.375rem;
  /* p-1.5 */
  border-radius: 0.5rem;
  /* rounded-lg */
  align-self: flex-end;
  margin-bottom: 0.25rem;
  /* mb-1 */
}

@media (min-width: 768px) {
  .slides-nav {
    align-self: auto;
  }
}

.slides-nav-btn {
  width: 2.75rem;
  /* w-11 */
  height: 2.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--c-white);
  color: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.slides-nav-btn:focus {
  outline: none;
}

.slides-nav-btn:hover {
  background-color: #f3f4f6;
  /* bg-gray-100 */
  transform: scale(1.05);
}

.slides-nav-btn svg {
  width: 1.25rem;
  /* w-5 */
  height: 1.25rem;
  stroke: currentColor;
}

.slide-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
}

.slide-item {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;

  /* State animations */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-item.slide-item-left {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-24px);
}

.slide-item.slide-item-right {
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
}

.slide-item.slide-item-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .slide-item {
    flex-direction: row;
  }
}

.slide-card-text {
  background-color: var(--c-blue-cta);
  color: var(--c-black);
  padding: 2rem;
  /* p-8 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0;
}

@media (min-width: 768px) {
  .slide-card-text {
    padding: 2.5rem;
    /* md:p-10 */
  }
}

@media (min-width: 1024px) {
  .slide-card-text {
    width: 58.333333%;
    /* lg:w-7/12 */
  }
}

.slide-card-image {
  display: flex;
  background-color: var(--c-white);
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

@media (min-width: 640px) {
  .slide-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .slide-card-image {
    width: 41.666667%;
    height: auto;
    min-height: 100%;
    padding: 0;
  }
}

.slide-title {
  font-weight: 600;
  font-size: 1.25rem;
  /* text-xl */
  margin-bottom: 1rem;
  /* mb-4 */
}

@media (min-width: 768px) {
  .slide-title {
    font-size: 1.5rem;
    /* md:text-2xl */
  }
}

.slide-content {
  margin-bottom: 1.5rem;
  /* mb-6 */
}

.slide-bullets {
  margin-bottom: 2rem;
  /* mb-8 */
  padding-left: 0;
  list-style: none;
}

.slide-bullet-item {
  display: flex;
  align-items: start;
  gap: 0.625rem;
  /* gap-2.5 */
}

.slide-bullet-dot {
  margin-top: 0.125rem;
  /* mt-0.5 */
}

.slide-footer-row {
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* gap-6 */
  padding-top: 1rem;
  /* pt-4 */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  /* border-black/10 */
}

@media (min-width: 640px) {
  .slide-footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.slide-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  /* gap-3 */
  background-color: var(--c-white);
  color: var(--c-black);
  font-weight: 700;
  font-size: 0.875rem;
  /* text-sm */
  border-radius: 8px;
  padding: 0.625rem 1.5rem;
  /* py-2.5 px-6 */
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* shadow-sm */
  align-self: flex-start;
  flex-shrink: 0;
  text-decoration: none;
}

@media (min-width: 640px) {
  .slide-more-btn {
    align-self: auto;
  }
}

.slide-more-btn:hover {
  background-color: var(--c-black);
  color: var(--c-white);
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-item:hover .slide-img {
  transform: scale(1.04);
}

/* Side Navigation Arrows for pricing slides */
.slides-outer-wrapper {
  position: relative;
  width: 100%;
}

.slide-side-arrow {
  display: none;
  /* Hidden by default on mobile */
}

@media (min-width: 1024px) {
  .slides-outer-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    /* complètement collé */
    border-radius: 20px;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  }

  .slides-outer-wrapper .slide-container {
    flex: 1;
    min-width: 0;
    border-radius: 0;
    background-color: transparent;
  }

  .slides-outer-wrapper .slide-item {
    border-radius: 0 !important;
  }

  .slide-side-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    /* plus fin */
    background-color: var(--c-blue-cta);
    /* fond lime */
    color: var(--c-black);
    /* fleche noire */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
  }

  .slide-side-arrow-prev {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }

  .slide-side-arrow-next {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .slide-side-arrow:hover {
    background-color: var(--c-black);
    /* fond noir au survol */
    color: var(--c-blue-cta);
    /* fleche lime au survol */
  }

  .slide-side-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    transition: transform 0.3s ease, stroke 0.3s ease;
  }

  /* Animation loop de la flèche qui invite à cliquer (synchronisée via variable CSS) */
  .slide-side-arrow-prev svg {
    --invite-dir: -4px;
    animation: invite-click 1.8s infinite ease-in-out;
  }

  .slide-side-arrow-next svg {
    --invite-dir: 4px;
    animation: invite-click 1.8s infinite ease-in-out;
  }

  @keyframes invite-click {

    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(var(--invite-dir));
    }
  }

  .slide-side-arrow-prev:hover svg {
    animation-play-state: paused;
    transform: translateX(-6px);
  }

  .slide-side-arrow-next:hover svg {
    animation-play-state: paused;
    transform: translateX(6px);
  }

  /* Hide the header nav controls on desktop */
  .slides-header .slides-nav {
    display: none !important;
  }
}

/* Dots pagination */
.slides-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slide-dot:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.slide-dot-active {
  background-color: var(--c-black);
  width: 24px;
  border-radius: 4px;
}

/* Contact Form custom overrides for Tarifs */
.contact-form-section-tarifs {
  background-color: var(--c-white);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: 1.5rem;
  /* px-6 */
  padding-right: 1.5rem;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  /* border-black/5 */
}

@media (min-width: 768px) {
  .contact-form-section-tarifs {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 4rem;
    /* md:px-16 */
    padding-right: 4rem;
  }
}

.contact-form-title-tarifs {
  font-family: var(--font-heading);
  font-weight: 800;
  /* font-extrabold */
  font-size: 1.875rem;
  /* text-3xl */
  line-height: 1.25;
  /* leading-tight */
  color: var(--c-black);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  /* tracking-tight */
}

@media (min-width: 768px) {
  .contact-form-title-tarifs {
    font-size: 2.25rem;
    /* md:text-4xl */
  }
}

.contact-form-btn-tarifs {
  background-color: var(--c-blue-cta);
  color: var(--c-black);
  font-weight: 700;
  border: 1px solid var(--c-blue-cta);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  /* shadow-sm */
}

.contact-form-btn-tarifs:hover {
  background-color: #59D3F2;
}

.contact-form-btn-circle-tarifs {
  background-color: var(--c-white);
  color: var(--c-black);
}

.contact-form-wrapper-tarifs {
  background-color: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.contact-form-wrapper-tarifs>div {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .contact-form-wrapper-tarifs {
    padding: 0;
  }
}

/* ===================================
   Mobile Navigation Menu
   =================================== */

/* Hamburger button */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
}

.nav-hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--c-black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, scale 0.2s ease;
  transform-origin: center;
}

/* Mobile panel */
.nav-mobile-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--c-white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0 1.25rem;
  z-index: 99;
}

/* Section wrapper for accordion items */
.nav-mobile-section {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Accordion trigger button */
.nav-mobile-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-black);
  text-align: left;
  transition: background-color 0.15s ease;
}

.nav-mobile-group-btn:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Chevron icon */
.nav-mobile-chevron {
  width: 0.875rem;
  height: 0.875rem;
  color: rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* Submenu container */
.nav-mobile-submenu {
  background-color: rgba(0, 0, 0, 0.015);
}

/* Generic mobile link */
.nav-mobile-link {
  display: block;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-mobile-link:last-child {
  border-bottom: none;
}

.nav-mobile-link:hover {
  color: var(--c-black);
  background-color: rgba(0, 0, 0, 0.02);
}

/* Sublink (indented) */
.nav-mobile-sublink {
  padding-left: 2.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-mobile-sublink:hover {
  color: var(--c-black);
}

/* Active bar on active mobile link */
.nav-mobile-link.active {
  color: var(--c-black);
  font-weight: 700;
  box-shadow: inset 3px 0 0 0 var(--c-blue-cta);
}

/* Testimonial quotes color override */
blockquote span.text-lime,
.font-serif.text-lime {
  color: var(--c-tuka-accent3) !important;
}

/* ══════════ TOUCH USABILITY & ERGONOMICS OVERRIDES ══════════ */
a, button, input, select, textarea, [role="button"], .carousel-dot {
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile-panel {
  overscroll-behavior: contain;
}

@media (max-width: 767px) {
  .contact-input-box input,
  .contact-input-box select,
  .contact-input-box textarea {
    font-size: 16px !important;
  }
}

@media (pointer: coarse) {
  .carousel-nav-btn,
  .slides-nav-btn {
    min-width: 44px;
    min-height: 44px;
  }
}

/* Active tap feedback for buttons */
button:active, .nav-mobile-link:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}