/* Variables globales */
:root {
  /* Couleurs */
  --base-black: #141414;
  --base-white: #FAFAFA;
  --brand-800: #A6ABFF;
  --brand-700: #EDF0FF;
  --brand-100: #DEEDFC;
  --gray-100: #F5F5F5;
  --gray-200: #E9E9E9;
  --gray-300: #D9D9D9;
  
  /* Typographie */
  --font-family-heading: 'Raleway', sans-serif;
  --font-family-body: 'Mulish', sans-serif;
  
  /* Tailles de police */
  --font-size-7xl: 88px;
  --font-size-6xl: 64px;
  --font-size-5xl: 48px;
  --font-size-4xl: 36px;
  --font-size-3xl: 30px;
  --font-size-2xl: 24px;
  --font-size-xl: 20px;
  --font-size-lg: 18px;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;
  
  /* Line heights */
  --font-line-height-4xl: 96px;
  --font-line-height-3xl: 72px;
  --font-line-height-2xl: 56px;
  --font-line-height-xl: 44px;
  --font-line-height-lg: 40px;
  --font-line-height-base: 28px;
  --font-line-height-sm: 24px;
  --font-line-height-xs: 20px;
  
  /* Espacement */
  --spacing-3xl: 64px;
  --spacing-2xl: 48px;
  --spacing-xl: 32px;
  --spacing-lg: 24px;
  --spacing-ml: 16px;
  --spacing-base: 12px;
  --spacing-sm: 8px;
  --spacing-xs: 4px;
  
  /* Radius */
  --radius-xl: 24px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  
  /* Containers */
  --container-width: 1280px;
  --size: 1440px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-body, 'Mulish', sans-serif);
  font-size: var(--font-size-base);
  color: var(--base-black, #141414);
  line-height: var(--font-line-height-base);
  background-color: var(--base-white, #FAFAFA);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading, 'Raleway', sans-serif);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-7xl);
  line-height: var(--font-line-height-4xl);
}

h2 {
  font-size: var(--font-size-5xl);
  line-height: var(--font-line-height-2xl);
  margin-bottom: var(--spacing-ml);
}

h3 {
  font-size: var(--font-size-2xl);
  line-height: var(--font-line-height-lg);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-ml);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Styles communs */
a {
  color: inherit;
  text-decoration: none;
}

.section-label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  padding: var(--spacing-xxs, 2px) var(--spacing-ml, 16px);
  border-radius: var(--radius-l, 16px);
  border: 0.5px solid var(--tertiary-300, #D6D6D6);
  background-color: rgba(94, 65, 234, 0.08);
  color: #5E41EA;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-family-body);
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: var(--font-line-height-base);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  outline: none;
}

.btn-primary {
  background-color: var(--brand-800, #A6ABFF);
  color: var(--base-black, #141414);
  border-color: var(--brand-800, #A6ABFF);
  border-radius: var(--radius-l, 16px);
  display: inline-flex;
  padding: var(--spacing-sm, 8px) var(--spacing-l, 24px);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  width: auto;
}

.btn-primary:hover {
  background-color: #5E41EA;
  border-color: #5E41EA;
  color: var(--base-white, #FAFAFA);
}

.btn-outline {
  background-color: transparent;
  color: var(--base-white);
  border-color: var(--base-white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-wrapper {
  display: flex;
  padding-top: 30px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Header */
.header {
  display: flex;
  width: calc(100% - 40px);
  max-width: 1280px;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  border-radius: 24px;
  background: var(--base-black, #141414);
  color: var(--base-white);
  padding: 0 32px;
  box-sizing: border-box;
  position: relative;
}

.logo {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 28px;
  width: auto;
}

.main-nav {
  margin: 0 auto;
}

.main-nav ul {
  display: flex;
  gap: var(--spacing-2xl);
}

.main-nav ul li a {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.main-nav ul li a:hover {
  opacity: 1;
}

.auth-buttons {
  display: flex;
  gap: var(--spacing-ml);
}

.header .btn-primary {
  background-color: var(--base-white, #FAFAFA);
  color: var(--base-black, #141414);
  border-color: var(--base-white, #FAFAFA);
}

.header .btn-primary:hover {
  background-color: #5E41EA;
  color: var(--base-white, #FAFAFA);
  border-color: #5E41EA;
}

.btn-outline {
  background-color: transparent;
  color: var(--base-white);
  border-color: var(--base-white);
  display: flex;
  align-items: center;
}

.btn-outline i {
  margin-left: 8px;
}

/* Dropdown menu */
.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--base-black, #141414);
  border-radius: 16px;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 10;
  padding: 8px 0;
}

.main-nav .dropdown:hover .dropdown-menu,
.main-nav .dropdown:focus-within .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu li a {
  color: var(--base-white, #FAFAFA);
  padding: 10px 24px;
  display: block;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.main-nav .dropdown-menu li a:hover {
  background: rgba(255,255,255,0.08);
}

/* Hero Section */
.hero {
  margin-top: 20px;
  width: 100%;
  padding: 40px 0;
  position: relative;
}

.hero .container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-content {
  width: 50%;
  max-width: 600px;
  padding-right: 20px;
}

.hero-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 72px;
  line-height: var(--font-line-height-3xl, 72px);
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
}

.hero-content p {
  font-size: var(--font-size-xl);
  max-width: 470px;
  margin-bottom: 24px;
  color: var(--base-black, #141414);
  line-height: 1.5;
  margin-top: 0;
}

.hero-content .btn-primary {
  background: var(--brand-800, #A6ABFF);
  color: var(--base-black, #141414);
  border: 1px solid var(--brand-800, #A6ABFF);
  border-radius: var(--radius-l, 16px);
  display: inline-flex;
  padding: var(--spacing-sm, 8px) var(--spacing-l, 24px);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  font-weight: 500;
  align-self: flex-start;
  width: auto;
}

.hero-content .btn-primary:hover {
  background-color: var(--brand-800, #A6ABFF);
  border-color: var(--brand-800, #A6ABFF);
  color: var(--base-black, #141414);
}

.social-bubble {
  position: absolute;
  top: 0;
  right: 0;
  background-color: white;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.social-bubble .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #0077B5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.social-bubble .text {
  display: flex;
  flex-direction: column;
}

.social-bubble .name {
  font-weight: 600;
  font-size: 14px;
}

.social-bubble .description {
  font-size: 12px;
  color: #666;
}

/* Section Comment s'en servir */
.how-to-use {
  padding: 104px 0;
  background-color: var(--base-white, #FAFAFA);
}

.how-to-use .container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 20px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: var(--base-white, #FAFAFA);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.feature-card:first-child {
  grid-column: 1 / -1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #EDF0FF;
  margin-bottom: 16px;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.how-to-use .section-label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  padding: var(--spacing-xxs, 2px) var(--spacing-ml, 16px);
  border-radius: var(--radius-l, 16px);
  border: 0.5px solid var(--tertiary-300, #D6D6D6);
  background-color: rgba(94, 65, 234, 0.08);
  color: #5E41EA;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  width: auto;
}

.how-to-use h2 {
  font-family: var(--font-family-heading, Raleway);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: var(--base-black, #141414);
}

.feature-card h2 {
  font-family: var(--font-family-heading, Raleway);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: var(--base-black, #141414);
}

.feature-card h3 {
  font-family: var(--font-family-heading, Raleway);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--base-black, #141414);
}

.feature-card p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--base-black, #141414);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.how-to-use p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--base-black, #141414);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.how-to-use .section-intro {
  font-size: 20px;
  margin-bottom: 0;
  max-width: 600px;
  color: var(--base-black, #141414);
}

@media (max-width: 992px) {
  .how-to-use .container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .how-to-use h2, .feature-card h2 {
    font-size: 42px;
  }
  
  .feature-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .how-to-use .container {
    grid-template-columns: 1fr;
  }
  
  .how-to-use {
    padding: 60px 0;
  }
  
  .how-to-use h2, .feature-card h2 {
    font-size: 36px;
  }
  
  .feature-card h3 {
    font-size: 16px;
  }
}

/* Section Pour qui */
.for-who {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EDF0FF;
  width: 100%;
  padding: 1px 0;
}

.for-who-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: calc((100% - var(--container-width))/2 + 20px);
}

.for-who-fixed {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 40px;
  position: sticky;
  top: 120px;
}

.for-who-fixed .section-label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  padding: var(--spacing-xxs, 2px) var(--spacing-ml, 16px);
  border-radius: var(--radius-l, 16px);
  border: 0.5px solid var(--tertiary-300, #D6D6D6);
  background-color: rgba(94, 65, 234, 0.08);
  color: #5E41EA;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  width: auto;
}

.for-who-fixed h2 {
  font-family: var(--font-family-heading, Raleway);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.for-who-fixed p {
  font-size: 20px;
  margin-bottom: 32px;
}

.for-who-fixed .btn-primary {
  display: flex;
  padding: var(--spacing-sm, 8px) var(--spacing-l, 24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  border-radius: var(--radius-l, 16px);
  border: 1px solid var(--brand-800, #A6ABFF);
  background: var(--brand-800, #A6ABFF);
  color: var(--base-black, #141414);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.for-who-fixed .btn-primary:hover {
  background: var(--brand-800, #A6ABFF);
  border-color: var(--brand-800, #A6ABFF);
  color: var(--base-black, #141414);
}

.for-who-slider {
  width: 75%;
  position: relative;
  overflow-x: auto;
  padding-right: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-800) var(--brand-100);
}

.for-who-slider::-webkit-scrollbar {
  height: 8px;
}

.for-who-slider::-webkit-scrollbar-track {
  background: var(--brand-100);
  border-radius: 4px;
}

.for-who-slider::-webkit-scrollbar-thumb {
  background-color: var(--brand-800);
  border-radius: 4px;
}

.slider-container {
  width: auto;
  position: relative;
}

.slides-wrapper {
  display: flex;
  width: max-content;
  overflow: visible;
  gap: 24px;
  padding: 20px 0;
}

.slide {
  flex: 0 0 auto;
  width: 710px;
  height: 480px;
  padding: 0;
  display: block;
  background: transparent;
}

.slide-content {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: var(--base-white);
  border-radius: 24px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.slide-image {
  width: 180px;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: none;
  padding: 10px;
  background-color: #f8f8f8;
  margin-right: 10px;
}

.slide-text {
  flex: 1;
}

.slider-preview, .slider-controls {
  display: none;
}

/* Section Le saviez-vous */
.did-you-know {
  display: flex;
  width: 100%;
  max-width: 1280px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  color: var(--base-black, #141414);
  margin: 0 auto 64px auto;
  padding: 0 20px;
}

.facts-cards {
  display: flex;
  gap: 24px;
  width: 100%;
}

.fact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-ml, 16px);
  min-width: 320px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #E5E7EB;
  box-shadow: none;
  padding: 32px 24px;
  flex: 1 1 0;
  transition: transform 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.fact-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.fact-value {
  color: #5E41EA;
  font-family: var(--font-family-heading, Raleway);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.fact-desc {
  font-family: var(--font-family-body, Mulish);
  font-size: 18px;
  line-height: 1.5;
  color: var(--base-black, #141414);
}

.fact-separator {
  width: 100%;
  height: 1px;
  background: #E5E7EB;
  margin: 0;
}

.fact-link-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.fact-link {
  display: inline-flex;
  align-items: center;
}

.fact-link a {
  font-size: 16px;
  color: #5E41EA;
  font-style: italic;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-family-body, Mulish);
  transition: color 0.3s ease;
}

.fact-link a:hover {
  color: #A6ABFF;
}

.fact-link::after {
  content: "→";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.fact-link:hover::after {
  transform: translateX(4px);
}

.fact-text {
  font-size: 16px;
  color: #5E41EA;
  font-style: italic;
  font-weight: 700;
  font-family: var(--font-family-body, Mulish);
  display: inline-block;
  padding: 5px 0;
}

@media (max-width: 992px) {
  .did-you-know {
    padding: 0 20px;
  }
  
  .facts-cards {
    flex-direction: column;
    gap: 24px;
  }
  
  .fact-card {
    width: 100%;
    min-width: auto;
  }
}

/* Section Linkmee Benefits */
.linkmee-benefits {
  display: flex;
  padding: 80px 0;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}

.benefits-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 60px;
  border-radius: 32px;
  background-color: var(--base-black, #141414);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits-text {
  color: var(--base-white, #FAFAFA);
  text-align: center;
  font-family: var(--font-family-body, Mulish);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 100%;
  margin: 0 auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.benefits-container .btn {
  margin-top: 32px;
  background-color: white;
  color: var(--base-black, #141414);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 992px) {
  .benefits-text {
    font-size: 28px;
    line-height: 1.4;
  }
  
  .benefits-container {
    padding: 40px 30px;
    border-radius: 28px;
    width: 85%;
  }
}

@media (max-width: 768px) {
  .benefits-text {
    font-size: 22px;
    line-height: 1.4;
  }
  
  .benefits-container {
    padding: 32px 24px;
    border-radius: 24px;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .benefits-text {
    font-size: 18px;
    line-height: 1.5;
  }
  
  .benefits-container {
    padding: 24px 16px;
    border-radius: 20px;
    width: 95%;
  }
}

/* Section Connexions */
.connections {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: var(--base-white, #FAFAFA);
}

.connections h2 {
  margin-bottom: 40px;
  font-family: var(--font-family-heading, Raleway);
  font-size: 46px;
  font-weight: 700;
  color: var(--base-black, #141414);
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
}

.marquee-content {
  display: inline-flex;
  animation-duration: 25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  white-space: nowrap;
  padding-right: 0;
  will-change: transform;
}

.marquee-left .marquee-content {
  animation-name: scroll-left;
}

.marquee-right .marquee-content {
  animation-name: scroll-right;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.tag {
  display: flex;
  align-items: center;
  padding: 4px 16px 4px 4px;
  margin: 0 8px;
  background-color: white;
  border-radius: 50px;
  border: 1px solid #E5E7EB;
  color: var(--base-black, #141414);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: none;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.tag img {
  width: 38px;
  height: 38px;
  margin: 0 10px 0 0;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .tag {
    padding: 6px 12px;
    font-size: 13px;
    max-width: 180px;
  }
  
  .tag img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}

@media (max-width: 768px) {
  .tag {
    padding: 5px 10px;
    font-size: 12px;
    max-width: 150px;
    margin: 0 5px;
  }
  
  .tag img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
}

@media (max-width: 480px) {
  .tag {
    padding: 4px 8px;
    font-size: 11px;
    max-width: 120px;
    margin: 0 4px;
  }
  
  .tag img {
    width: 14px;
    height: 14px;
    margin-right: 4px;
  }
}

.tag img {
  width: 38px;
  height: 38px;
  margin-right: 10px;
}

/* Section Tarifs */
.pricing {
  padding: 80px 0;
  background-color: #141414;
  color: #FFFFFF;
  width: 100%;
}

.pricing .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.pricing .section-label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  padding: var(--spacing-xxs, 2px) var(--spacing-ml, 16px);
  border-radius: var(--radius-l, 16px);
  border: 0.5px solid var(--tertiary-300, #D6D6D6);
  background-color: rgba(94, 65, 234, 0.08);
  color: #5E41EA;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  width: auto;
}

.pricing h2 {
  font-family: var(--font-family-heading, Raleway);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 40px auto;
  color: #FFFFFF;
  max-width: var(--container-width);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 4px;
  margin: 0 auto 48px;
  max-width: 400px;
}

.toggle-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background-color: #FFFFFF;
  color: #141414;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px auto;
  max-width: var(--container-width);
  padding: 0 20px;
}

.pricing-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: left;
  color: #141414;
  flex: 1;
  max-width: 480px;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 32px;
  background-color: #F3F4F6;
  color: #141414;
  padding: 6px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
}

.pricing-card h3 {
  font-family: var(--font-family-heading, Raleway);
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0 16px 0;
}

.pricing-price {
  margin-bottom: 24px;
}

.price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-details {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #141414;
  margin: 15px 0;
  padding: 10px;
  background-color: #F3F4F6;
  border-radius: 8px;
  text-align: center;
}

.pricing-card .btn {
  width: 100%;
  margin-bottom: 24px;
  background-color: #A6ABFF;
  color: #141414;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pricing-card .btn:hover {
  background-color: #A6ABFF;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.pricing-features:before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  max-width: 564px;
  height: 1px;
  background-color: #E5E7EB;
}

.pricing-features li {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
}

.feature-icon {
  color: #5E41EA;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 14px;
  line-height: 1.5;
}

.pricing-card.featured {
  border: 2px solid #A6ABFF;
}

/* Footer */
.footer {
  background-color: var(--base-black, #141414);
  color: var(--base-white, #FAFAFA);
  padding: 60px 0 40px;
  width: 100%;
}

.footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.footer-info {
  max-width: 300px;
}

.footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-column h4 {
  font-family: var(--font-family-heading, Raleway);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--base-white, #FAFAFA);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--base-white, #FAFAFA);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 0.8;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: var(--base-white, #FAFAFA);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

/* Section Témoignages */
.testimonials {
  padding: 80px 0;
  background-color: var(--base-white, #FAFAFA);
}

.testimonials .container {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.testimonials .section-label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  padding: var(--spacing-xxs, 2px) var(--spacing-ml, 16px);
  border-radius: var(--radius-l, 16px);
  border: 0.5px solid var(--tertiary-300, #D6D6D6);
  background-color: rgba(94, 65, 234, 0.08);
  color: #5E41EA;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  width: auto;
}

.testimonials h2 {
  font-family: var(--font-family-heading, Raleway);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 48px 0;
  color: var(--base-black, #141414);
}

.testimonials-grid {
  display: flex;
  gap: 24px;
  position: relative;
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: calc(33.33% - 16px);
}

.testimonial-card {
  display: flex;
  padding: var(--spacing-2xl, 40px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-sm, 8px);
  border-radius: var(--radius-xl, 24px);
  background: var(--tertiary-200, #EDF0FF);
  text-align: left;
  box-sizing: border-box;
}

.testimonials-column:nth-child(1) .testimonial-card:nth-child(1) {
  height: 291px;
}

.testimonials-column:nth-child(1) .testimonial-card:nth-child(2) {
  height: 310px;
}

.testimonials-column:nth-child(1) .testimonial-card:nth-child(3) {
  height: 290px;
}

.testimonials-column:nth-child(1) .testimonial-card:nth-child(4) {
  height: 280px;
}

.testimonials-column:nth-child(2) .testimonial-card:nth-child(1) {
  height: 330px;
}

.testimonials-column:nth-child(2) .testimonial-card:nth-child(2) {
  height: 280px;
}

.testimonials-column:nth-child(2) .testimonial-card:nth-child(3) {
  height: 320px;
}

.testimonials-column:nth-child(2) .testimonial-card:nth-child(4) {
  height: 290px;
}

.testimonials-column:nth-child(3) .testimonial-card:nth-child(1) {
  height: 270px;
}

.testimonials-column:nth-child(3) .testimonial-card:nth-child(2) {
  height: 300px;
}

.testimonials-column:nth-child(3) .testimonial-card:nth-child(3) {
  height: 270px;
}

.testimonials-column:nth-child(3) .testimonial-card:nth-child(4) {
  height: 310px;
}

.testimonial-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  color: var(--base-black, #141414);
}

.testimonial-author {
  margin-top: auto;
}

.testimonial-author h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.testimonial-author p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

/* Effet de fondu progressif */
.blur-card {
  position: relative;
}

.blur-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0);
  border-radius: var(--radius-xl, 24px);
  pointer-events: none;
  transition: background 0.3s ease;
}

/* Effet de fondu par ligne */
.testimonials-column .testimonial-card:nth-child(2)::after {
  background: rgba(255, 255, 255, 0.2);
}

.testimonials-column .testimonial-card:nth-child(3)::after {
  background: rgba(255, 255, 255, 0.6);
}

.testimonials-column .testimonial-card:nth-child(4)::after {
  background: rgba(255, 255, 255, 0.9);
}

/* Section CTA */
.cta-section {
  padding: 0 0 100px 0;
  background-color: var(--base-white, #FAFAFA);
  width: 100%;
  margin-top: -40px;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.cta-section .section-label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-sm, 8px);
  padding: var(--spacing-xxs, 2px) var(--spacing-ml, 16px);
  border-radius: var(--radius-l, 16px);
  border: 0.5px solid var(--tertiary-300, #D6D6D6);
  background-color: rgba(94, 65, 234, 0.08);
  color: #5E41EA;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  width: auto;
}

.cta-section h2 {
  color: var(--base-black, #141414);
  text-align: center;
  font-family: var(--font-family-heading, Raleway);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--font-line-height-2xl, 80px);
  margin: 0 0 24px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-text {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--base-black, #141414);
  opacity: 0.8;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  border-radius: var(--radius-l, 16px);
  border: 1px solid #A6ABFF;
  background: #A6ABFF;
  color: var(--base-black, #141414);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: none;
}

.cta-button:hover {
  background-color: #A6ABFF;
  border-color: #A6ABFF;
  color: var(--base-black, #141414);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --font-size-7xl: 72px;
    --font-size-6xl: 56px;
    --font-size-5xl: 42px;
    --font-size-4xl: 32px;
    --font-size-3xl: 28px;
  }
  
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  :root {
    --font-size-7xl: 56px;
    --font-size-6xl: 48px;
    --font-size-5xl: 36px;
    --font-size-4xl: 28px;
    --font-size-3xl: 24px;
  }
  
  /* Header */
  .header {
    width: calc(100% - 40px);
    padding: 0 20px;
    position: relative;
    margin: 15px auto;
    height: 70px;
  }
  
  .logo img {
    height: 26px;
  }
  
  .desktop-auth {
    display: none;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--base-black);
    padding: 80px 20px 20px;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }
  
  .main-nav .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 8px;
  }
  
  .main-nav .dropdown.open .dropdown-menu {
    display: block;
  }
  
  .mobile-auth-buttons {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 30px 0;
  }
  
  .hero .container {
    padding: 0 20px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }
  
  .hero-content, .hero-image {
    width: 100%;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 46px;
    line-height: var(--font-line-height-3xl, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
  }
  
  .hero-image img {
    max-width: 400px;
  }
  
  /* Animation overlay */
  .animation-overlay {
    top: -20px;
    right: -40px;
    transform: scale(0.7);
  }
  
  /* Benefits */
  .benefits-text {
    font-size: 24px;
    line-height: 1.4;
    padding: 0 20px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  /* Pour qui */
  .for-who {
    padding: 60px 0;
  }
  
  .for-who-fixed h2 {
    font-size: 36px;
    line-height: 1.3;
  }
  
  .slide {
    padding: 32px;
  }
  
  .slide-content {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  
  .slide-image {
    margin-left: 0;
  }
  
  .slide-text {
    padding-right: 0;
  }
  
  /* Tarifs */
  .pricing-toggle {
    flex-direction: column;
    gap: 12px;
  }
  
  .toggle-btn {
    width: 100%;
  }
  
  /* Témoignages */
  .testimonial-card {
    padding: 24px;
  }
  
  /* CTA */
  .cta-section h2 {
    font-size: 36px;
    line-height: 1.3;
  }
  
  /* Footer */
  .footer-links {
    gap: 60px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  /* Le saviez-vous */
  .did-you-know {
    width: 100%;
    padding: 0 20px;
  }
  
  .facts-cards {
    flex-direction: column;
    gap: 24px;
  }
  
  .fact-card {
    width: 100%;
  }
  
  /* Tarifs */
  .pricing-cards {
    flex-direction: column;
    gap: 32px;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  /* Témoignages */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonials-column {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-7xl: 42px;
    --font-size-6xl: 36px;
    --font-size-5xl: 30px;
    --font-size-4xl: 24px;
    --font-size-3xl: 20px;
  }
  
  /* Header */
  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }
  
  .main-nav .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 8px;
  }
  
  .auth-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .auth-buttons .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Hero */
  .hero {
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: 46px;
    line-height: 1.3 !important;

  }
  
  .hero-image img {
    max-width: 400px;
  }
  
  /* Animation overlay */
  .animation-overlay {
    transform: scale(0.75);  /* Augmenter cette valeur, par exemple à 0.75 */
    top: -20px;
    right: -80px;
  }
  }
  
  .for-who-fixed h2,
  .did-you-know h2,
  .pricing h2,
  .testimonials h2,
  .cta-section h2 {
    font-size: 46px;
    line-height: 1.2;
  }
  
  .slide {
    padding: 24px;
  }


/* Menu burger pour mobile */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--base-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Styles pour les boutons dans la navigation */
.mobile-only {
  display: none;
}

.nav-btn-outline, 
.nav-btn-primary {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 5px;
  font-size: 16px;
}

.nav-btn-outline {
  background-color: transparent;
  color: var(--base-white);
  border: 1px solid var(--base-white);
}

.nav-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-btn-primary {
  background-color: var(--brand-600);
  color: var(--base-white);
  border: 1px solid var(--brand-600);
}

.nav-btn-primary:hover {
  background-color: var(--brand-700);
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--base-black);
    padding: 80px 20px 20px;
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .header {
    position: relative;
  }
  
  /* Correction pour le texte qui dépasse */
  .benefits-text {
    font-size: 24px;
    line-height: 1.4;
    padding: 0 20px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  /* Correction pour la flèche qui ne fonctionne pas */
  .fact-link::after {
    content: "→";
    margin-left: 8px;
    display: inline-block;
  }
}

@media (max-width: 992px) {
  /* Témoignages - Afficher seulement 4 témoignages sur mobile */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonials-column {
    width: 100%;
  }
  
  /* Masquer tous les témoignages par défaut */
  .testimonial-card {
    display: block;
  }
}

/* Section Texte Défilant */
.scrolling-text-section {
  width: 100%;
  background-color: #0167CC;
  overflow: hidden;
  padding: 16px 0;
}

.scrolling-text-container {
  width: 100%;
  overflow: hidden;
}

.scrolling-text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation-duration: 25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  width: 200%;
  will-change: transform;
}

.scrolling-text span {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 600;
  padding: 0 30px;
}

.separator-icon {
  width: 24px;
  height: 24px;
  animation: rotateSeparator 3s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes rotateSeparator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Section Vidéo Démonstration */
.video-demo-section {
    margin: 80px 0;
    width: 100%;
}

.video-demo-container {
    display: flex;
    width: 1280px;
    height: 495px;
    padding: 56px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
    border-radius: 28.571px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/video-explicative.jpg');
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-content h2 {
    color: #FAFAFA;
    margin-bottom: 16px;
    font-size: 32px;
}

.play-video-btn {
    display: flex;
    padding: 16px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    border: 1px solid #FAFAFA;
    background: #FAFAFA;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-video-btn:hover {
    background: transparent;
    color: #FAFAFA;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
}

.video-background.active {
    display: block;
}

/* Section Fonctionnalités Scrollables */
.features-scroll-section {
  padding: 80px 0;
  background-color: var(--base-white);
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.features-scroll-section h2 {
  font-size: var(--font-size-5xl);
  margin-bottom: 40px;
}

.features-scroll-container {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  height: calc(100% - 120px);
}

.features-text-column {
  width: 50%;
  position: relative;
  height: 600px;
  overflow: hidden;
}

.features-image-column {
  width: 50%;
  position: sticky;
  top: 100px;
  height: 500px;
}

.features-intro {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: 60px;
  color: var(--base-black);
}

.features-scroll-items {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.5s ease;
  background-color: transparent;
  border: none;
  position: absolute;
  width: calc(100% - 40px);
  height: 120px;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity, top;
}

.feature-item:nth-child(1) {
  top: 0;
  opacity: 1;
  transform: translateY(0);
}

.feature-item:nth-child(2) {
  top: 180px;
  opacity: 1;
  transform: translateY(0);
}

.feature-item:nth-child(3) {
  top: 360px;
  opacity: 1;
  transform: translateY(0);
}

.feature-item.active {
  background-color: rgba(230, 240, 255, 0.3);
  border-radius: 16px;
  padding: 20px;
}

.feature-number {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--brand-800);
  flex-shrink: 0;
  min-width: 50px;
}

.feature-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 8px;
  color: var(--base-black);
}

.feature-content p {
  font-size: var(--font-size-base);
  line-height: 1.5;
  margin: 0;
  color: #555;
}

.feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 16px;
  box-shadow: none;
}

.feature-image.active {
  opacity: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(1, 103, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.scroll-indicator::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand-800);
  border-bottom: 2px solid var(--brand-800);
  transform: rotate(45deg) translateY(-2px);
}

@media (max-width: 992px) {
  .features-scroll-container {
    flex-direction: column;
  }
  
  .features-text-column,
  .features-image-column {
    width: 100%;
  }
  
  .features-image-column {
    position: relative;
    order: -1;
    margin-bottom: 40px;
    height: 400px;
    top: 0;
  }
  
  .feature-image {
    position: relative;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .features-image-column {
    height: 300px;
  }
}

/* Style pour les listes de fonctionnalités avec icônes dans les sliders */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.feature-list li img {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

/* Styles pour bloquer le scroll de la page */
body.scroll-locked {
  overflow: hidden;
}

/* Section Templates Mobiles */
.templates-mobile-section {
  padding: 100px 0;
  background-color: var(--base-white);
  text-align: center;
}

.templates-mobile-section h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--base-black);
}

.templates-intro {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
  color: #555;
}

.phone-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}

.slider-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #E5E7EB;
  color: var(--base-black, #141414);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  z-index: 10;
}

.slider-nav:hover {
  background-color: var(--brand-800);
  color: white;
  border-color: var(--brand-800);
}

.phone-slider {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  position: relative;
}

.phone-slides-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.phone-slide {
  flex: 0 0 calc(33.333% - 10px);
  padding: 0;
  box-sizing: border-box;
  position: relative;
  margin: 0 3px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: none;
}

.template-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: none;
  display: block;
  max-width: 100%;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #E5E7EB;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--brand-800);
  transform: scale(1.2);
}

.template-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.template-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.template-buttons .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  min-width: 120px;
}

.template-buttons .btn-test {
  background-color: white;
  color: #5E41EA;
  border: none;
}

.template-buttons .btn-order {
  background-color: #5E41EA;
  color: white;
  border: none;
}

.template-buttons .btn-test:hover {
  background-color: #f0f0f0;
}

.template-buttons .btn-order:hover {
  background-color: #4a34c9;
}

.phone-slide:hover .template-overlay {
  opacity: 1;
}

@media (max-width: 992px) {
  .phone-slide {
    flex: 0 0 calc(50% - 10px);
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .phone-slide {
    flex: 0 0 calc(100% - 0px);
  }
  
  .templates-mobile-section h2 {
    font-size: 36px;
  }
  
  .phone-slider-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .templates-mobile-section h2 {
    font-size: 30px;
  }
  
  .slider-nav {
    width: 36px;
    height: 36px;
  }
}

/* Styles pour les boutons d'authentification dans le menu mobile */
.mobile-auth-buttons {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-btn-outline,
.mobile-btn-primary {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 16px;
  text-decoration: none;
}

.mobile-btn-outline {
  background-color: transparent;
  color: var(--base-white);
  border: 1px solid var(--base-white);
}

.mobile-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-btn-primary {
  background-color: var(--brand-600);
  color: var(--base-white);
  border: 1px solid var(--brand-600);
}

.mobile-btn-primary:hover {
  background-color: var(--brand-700);
}

@media (max-width: 992px) {
  .mobile-auth-buttons {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header {
    width: calc(100% - 30px);
    padding: 0 16px;
    height: 60px;
    border-radius: 16px;
    margin: 8px auto;
  }
  
  .logo img {
    height: 30px;
  }
  
  .page-wrapper {
    padding: 0 15px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .hero {
    margin-top: 30px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .header {
    width: calc(100% - 30px);
    padding: 0 12px;
    margin: 10px auto;
    border-radius: 12px;
  }
  
  .page-wrapper {
    padding: 0 10px;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .logo img {
    height: 28px;
  }
  
  .mobile-menu-toggle {
    right: 12px;
    width: 24px;
    height: 18px;
  }
  
  .hero {
    margin-top: 20px;
  }
}

/* Styles pour les boutons Tester et Commander */
.template-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  width: 80%;
}

.btn-test, 
.btn-order {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 16px;
  text-decoration: none;
  width: 100%;
}

.btn-test {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--base-black, #141414);
  border: 1px solid transparent;
}

.btn-test:hover {
  background-color: #fff;
}

.btn-order {
  background-color: #0167CC;
  color: var(--base-white, #FAFAFA);
  border: 1px solid #0167CC;
}

.btn-order:hover {
  background-color: #0156A9;
}

.for-who-fixed h2,
.did-you-know h2,
.pricing h2,
.testimonials h2,
.cta-section h2 {
  font-size: 46px;
  line-height: 1.2;
}

/* Styles améliorés pour la page de paiement */
.payment-setup {
    padding: 60px 0;
    min-height: calc(100vh - 80px);
}

.payment-card {
    background: var(--base-white, #FAFAFA);
    border-radius: var(--radius-xl, 24px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(1, 103, 204, 0.1) 0%, rgba(1, 103, 204, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.payment-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.payment-header h1 {
    font-family: var(--font-family-heading, 'Raleway');
    color: var(--base-black, #141414);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.trial-banner {
    background: linear-gradient(135deg, var(--brand-800, #0167CC) 0%, var(--brand-700, #0D77E4) 100%);
    color: var(--base-white, #FAFAFA);
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(1, 103, 204, 0.2);
    transition: transform 0.3s ease;
}

.trial-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(1, 103, 204, 0.25);
}

.trial-banner i {
    font-size: 20px;
}

.payment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.subscription-info {
    padding-right: 40px;
    border-right: 1px solid var(--gray-200, #E9E9E9);
}

.subscription-info h2 {
    font-family: var(--font-family-heading, 'Raleway');
    font-size: 24px;
    font-weight: 700;
    color: var(--base-black, #141414);
    margin-bottom: 24px;
}

.price-tag {
    margin: 30px 0;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(1, 103, 204, 0.05) 0%, rgba(1, 103, 204, 0.02) 100%);
    border-radius: var(--radius-lg, 24px);
}

.price-tag .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-800, #0167CC);
    display: block;
    line-height: 1;
}

.price-tag .period {
    color: var(--base-black, #141414);
    opacity: 0.7;
    font-size: 18px;
    font-weight: 500;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--base-black, #141414);
    font-size: 16px;
    padding: 4px 0;
    transition: transform 0.2s ease;
}

.benefits li:hover {
    transform: translateX(5px);
}

.benefits i {
    color: var(--brand-800, #0167CC);
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(1, 103, 204, 0.1);
    border-radius: 50%;
}

.payment-form {
    padding: 20px 0;
}

#payment-element {
    margin-bottom: 30px;
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.payment-button {
    background: linear-gradient(135deg, var(--brand-800, #0167CC) 0%, var(--brand-700, #0D77E4) 100%);
    color: var(--base-white, #FAFAFA);
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-md, 16px);
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(1, 103, 204, 0.2);
    position: relative;
    overflow: hidden;
}

.payment-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.payment-button:hover {
    background: linear-gradient(135deg, var(--brand-700, #0D77E4) 0%, var(--brand-800, #0167CC) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(1, 103, 204, 0.25);
}

.payment-button:hover::after {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

.terms {
    text-align: center;
    margin-top: 24px;
    color: var(--base-black, #141414);
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.5;
}

.terms a {
    color: var(--brand-800, #0167CC);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.terms a:hover {
    color: var(--brand-700, #0D77E4);
    text-decoration: underline;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--base-white, #FAFAFA);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hidden {
    display: none;
}

#payment-message {
    color: #e53e3e;
    font-size: 14px;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: var(--radius-sm, 8px);
    background-color: rgba(229, 62, 62, 0.1);
    text-align: center;
}

#payment-message:not(.hidden) {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive pour la page de paiement */
@media (max-width: 768px) {
    .payment-setup {
        padding: 40px 20px;
    }
    
    .payment-card {
        padding: 30px 20px;
    }
    
    .payment-details {
        grid-template-columns: 1fr;
    }

    .subscription-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--gray-200, #E9E9E9);
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
    
    .payment-header h1 {
        font-size: 28px;
    }
    
    .price-tag {
        margin: 20px 0;
    }
    
    .price-tag .amount {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .payment-setup {
        padding: 20px 15px;
    }
    
    .payment-card {
        padding: 25px 15px;
    }
    
    .payment-header h1 {
        font-size: 24px;
    }
    
    .trial-banner {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .price-tag .amount {
        font-size: 36px;
    }
    
    .benefits li {
        font-size: 15px;
    }
}

/* Section FAQ */
.faq-section {
  padding: 80px 0;
  background-color: var(--base-white);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 48px;
  line-height: 56px;
  color: var(--base-black);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  position: relative;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--base-black, #141414);
  flex: 1;
}

.faq-toggle {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand-800, #0167CC);
  background-color: var(--brand-100, #EDF0FF);
  transition: all 0.3s ease;
}

.faq-toggle svg {
  width: 40px;
  height: 40px;
}

.faq-toggle .vertical-line {
  transition: all 0.3s ease;
}

.faq-item.active .faq-toggle .vertical-line {
  opacity: 0;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 24px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* Responsive styles for FAQ section */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 16px;
  }
  
  .faq-toggle {
    width: 36px;
    height: 36px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 0;
  }
  
  .faq-section h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 25px;
  }
  
  .faq-question {
    padding: 16px;
  }
  
  .faq-question h3 {
    font-size: 15px;
  }
  
  .faq-toggle {
    width: 32px;
    height: 32px;
  }
  
  .faq-toggle svg {
    width: 16px;
    height: 16px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }
}

/* Section Modèle Unique */
.modele-unique-section {
    padding: 80px 0 0 0;
    margin-bottom: 0;
}

.modele-unique-section + .footer,
.modele-unique-section + footer {
    margin-top: 0;
    padding-top: 40px;
}

.modele-unique-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.modele-unique-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.phone-mockup-container {
    position: relative;
    height: auto;
    width: auto;
    max-width: 440px;
    overflow: visible;
}

.phone-mockup {
    display: block;
    max-width: 100%;
    height: auto;
}

.logo-overlay {
    position: absolute;
    top: 40%;
    left: -60px;
    width: 120px;
    height: 120px;
    background-color: #A6ABFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo-overlay img {
    width: 72px;
    height: 72px;
    transform: rotate(20deg);
}

.modele-unique-text {
    flex: 1;
    max-width: 600px;
}

.modele-unique-text .section-label {
    display: inline-block;
    background-color: #EDF0FF;
    color: #5E41EA;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.modele-unique-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #141414;
}

.modele-unique-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.modele-unique-cta {
    display: inline-block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #A6ABFF;
    color: #141414;
}

.modele-unique-cta:hover {
    background-color: #5E41EA;
    color: #fff;
}

@media (max-width: 992px) {
    .modele-unique-content {
        gap: 30px;
    }
    
    .modele-unique-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .modele-unique-content {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup-container {
        margin-bottom: 40px;
    }
    
    .modele-unique-text {
        text-align: center;
    }
    
    .modele-unique-text h2 {
        font-size: 32px;
    }
}

/* Section Contact */
.contact-section {
  padding: 80px 0;
  background-color: var(--gray-100);
}

.contact-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.contact-form-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-family-body);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-top: 5px;
}

.checkbox-container label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit button {
  padding: 14px 40px;
  font-size: 16px;
}

/* Responsive pour le formulaire de contact */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form-container {
    padding: 25px;
  }
  
  .contact-section h1 {
    font-size: 36px;
  }
}

.slide-text .btn-outline {
  display: inline-flex;
  padding: var(--spacing-sm, 8px) var(--spacing-l, 24px);
  border-radius: var(--radius-l, 16px);
  border: 1px solid var(--brand-800, #A6ABFF);
  background: var(--brand-800, #A6ABFF);
  color: var(--base-black, #141414);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.slide-text .btn-outline:hover {
  background: var(--brand-800, #A6ABFF);
  border-color: var(--brand-800, #A6ABFF);
  color: var(--base-black, #141414);
}

/* Section Templates - Style spécial pour dépasser les contraintes du page-wrapper */
.templates-mobile-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  box-sizing: border-box !important;
  position: relative !important;
}

.templates-mobile-section .container {
  max-width: 1800px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

/* Styles pour les titres et le contenu des slides */
.slide-text {
  flex: 1;
}

.slide-text h3 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--base-black, #141414);
}

.slide-text p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.slide-text .feature-list li {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Style pour la section avantages des métiers */
.metiers-advantages {
    padding: 80px 0;
    background-color: #F9F9F9;
    text-align: center;
}

.metiers-advantages .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.metiers-advantages .section-label {
    display: inline-block;
    background-color: #EDF0FF;
    color: #5E41EA;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.metiers-advantages h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #141414;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: #EDF0FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 24px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #141414;
}

.advantage-card p {
    color: #555;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .metiers-advantages h2 {
        font-size: 32px;
    }
}
