/* ===== RESET ET BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Amélioration du scroll pour les ancres */
html {
  scroll-padding-top: 80px; /* Compense la hauteur du header fixe */
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Titres utilisent Plus Jakarta Sans */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.cta-title,
.download-title,
.employee-title,
.faq-title,
.footer-title,
.cta-payment-title,
.payment-title,
.benefits-title,
.contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

/* ===== SECTION HERO COMPLÈTE AVEC HEADER INTÉGRÉ ===== */
.hero {
  background: linear-gradient(135deg, #36ecf3 0%, #0d7a7c 93%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Header intégré dans la section hero */
.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-superscript {
  background: white;
  color: #0d7a7c;
  font-size: 12px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #f9a825;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f9a825;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.btn-cta-header {
  background: #f9a825;
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-cta-header:hover {
  background: #e0991f;
  transform: translateY(-1px);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.hero-content {
  color: white;
  padding-top: 40px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-hero-primary {
  background: #f9a825;
  border: none;
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(249, 168, 37, 0.3);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-hero-primary:hover {
  background: #e0991f;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 168, 37, 0.4);
}

.btn-hero-secondary {
  background: white;
  border: none;
  color: #333;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-hero-secondary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  color: #333;
  text-decoration: none;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-container {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ===== SECTION 2 - CTA PAIEMENT FRACTIONNÉ ===== */
.cta-payment {
  padding: 120px 0;
  background: white;
}

.cta-payment-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.payment-tag {
  margin-bottom: 32px;
}

.tag-text {
  display: inline-block;
  background: white;
  color: #333;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 6px solid #f3f3f3;
}

.cta-payment-title {
  font-size: 64px;
  font-weight: 700;
  color: #f9a825;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.title-line-1,
.title-line-2 {
  display: block;
}

.title-line-1 {
  margin-bottom: 8px;
}

.cta-payment-description {
  font-size: 20px;
  color: #333;
  font-weight: 400;
  line-height: 1.5;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== SECTIONS GÉNÉRALES ===== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== SECTION 3 - INTERFACE DE PAIEMENT ===== */
.payment-interface {
  padding: 120px 0 0;
  background: #e8f3f3;
  position: relative;
  overflow: hidden;
}

.payment-interface-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-end;
  min-height: 600px;
}

.payment-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.payment-image-container {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  bottom: -20px;
}

.payment-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.payment-content {
  padding-left: 40px;
  padding-bottom: 40px;
}

.payment-title {
  font-size: 48px;
  font-weight: 700;
  color: #0d7a7c;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.payment-description {
  font-size: 20px;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.payment-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.payment-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.payment-benefit-check {
  width: 24px;
  height: 24px;
  background: #f9a825;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-payment-cta {
  background: #f9a825;
  border: none;
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-payment-cta:hover {
  background: #e0991f;
  transform: translateY(-2px);
}

/* ===== SECTION 4 - BIEN-ÊTRE EMPLOYÉS ===== */
.employee-wellbeing {
  padding: 120px 0;
  background: white;
}

.employee-wellbeing .employee-title {
  color: #42b8bd;
}

.employee-wellbeing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.employee-content {
  padding-right: 40px;
}

.employee-title {
  font-size: 48px;
  font-weight: 700;
  color: #0d7a7c;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.employee-description {
  font-size: 20px;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.employee-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.employee-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.employee-benefit-check {
  width: 24px;
  height: 24px;
  background: #f9a825;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-employee-cta {
  background: #f9a825;
  border: none;
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-employee-cta:hover {
  background: #e0991f;
  transform: translateY(-2px);
}

.employee-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.employee-image-container {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.employee-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ===== SECTION 5 - AUGMENTATION DES VENTES ===== */
.sales-boost {
  padding: 120px 0;
  background: #e8f3f3;
}

.sales-boost-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sales-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sales-image-container {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sales-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.sales-content {
  padding-left: 40px;
}

.sales-title {
  font-size: 48px;
  font-weight: 700;
  color: #0d7a7c;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sales-description {
  font-size: 20px;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sales-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.sales-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}

.sales-benefit-check {
  width: 24px;
  height: 24px;
  background: #f9a825;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-sales-cta {
  background: #f9a825;
  border: none;
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 12px rgba(249, 168, 37, 0.3);
}

.btn-sales-cta:hover {
  background: #e0991f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 168, 37, 0.4);
}

/* ===== SECTION 6 - PARTENAIRE DE CONFIANCE ===== */
.trusted-partner {
  padding: 120px 0;
  background: linear-gradient(135deg, #f9a825 6%, #ea6b39 100%);
  text-align: center;
  color: white;
}

.trusted-partner-content {
  max-width: 1000px;
  margin: 0 auto;
}

.trusted-partner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.trusted-partner-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.logos-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  background: white;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.logo-separator {
  width: 2px;
  height: 50px;
  background: #f9a825;
  border-radius: 1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

.stat-item {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.stat-text {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== SECTION 7 - COMMENT ÇA MARCHE ? ===== */
.how-it-works {
  padding: 120px 0;
  background: white;
}

.how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.user-type-section {
  margin-bottom: 60px;
}

.user-type-label {
  background: #ffffff;
  border: 6px solid #e9ecef;
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: inline-block;
}

.consumer-label {
  background: #ffffff;
  border-color: #a5e1e3;
  color: #333;
}

.merchant-label {
  background: #ffffff;
  border-color: #ffda9d;
  color: #333;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.consumer-number {
  background: #20c997;
}

.merchant-number {
  background: #f9a825;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== SECTION 8 - MARCHANDS PARTENAIRES ===== */
.merchants-partners {
  padding: 120px 0;
  background: #e8f3f3;
}

.merchants-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.merchants-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.merchants-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.merchant-card {
  background: white;
  padding: 18px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: center;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.merchant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.merchants-cta-button {
  background: #f9a825;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: span 2;
}

.merchants-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ===== SECTION 9 - TÉLÉCHARGEMENT APP ===== */
.download-app {
  padding: 120px 0 0 0;
  background: white;
}

.download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.download-text {
  text-align: center;
}

.download-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #158287 0%, #41c6cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.download-button {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: left;
  min-width: 200px;
  height: 60px;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.download-button span {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-image {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

/* ===== SECTION 10 - OFFREZ DONYPAY À VOS EMPLOYÉS ===== */
.employee-offer {
  padding: 120px 0;
  background: #42b8bd;
}

.employee-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.employee-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 80px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.employee-offer .steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.employee-offer .step-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
}

.employee-offer .step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.employee-offer .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  background: #42b8bd;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.employee-offer .step-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.employee-offer .step-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 18px;
  font-weight: 500;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.employee-cta-button {
  background: #f9a825;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(249, 168, 37, 0.3);
}

.employee-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 168, 37, 0.4);
}

/* ===== SECTION FAQ ===== */
.faq {
  padding: 120px 0;
  background: white;
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-subtitle {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ===== SECTION 12 - SECTION FINALE AVEC FOOTER ===== */
.final-section {
  padding: 80px 0 0;
  background: linear-gradient(135deg, #ff9e00 14%, #42b8bd 100%) !important;
}

.final-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-box {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  width: 100%;
}

.cta-text {
  text-align: left;
  flex-shrink: 0;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #158287 0%, #41c6cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.cta-button {
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: left;
  min-width: 180px;
  height: 50px;
  flex: 1;
  max-width: 200px;
  justify-content: flex-start;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  display: block;
}

/* Boutons Google Play et App Store - fond gris foncé */
.cta-button.google-play,
.cta-button.app-store {
  background: #333;
  border: none;
}

.cta-button.google-play span,
.cta-button.app-store span {
  color: white;
}

/* Bouton Rejoindre Marchand - fond blanc avec bordure */
.cta-button.join-merchant {
  background: white;
  border: 1px solid #000;
}

.footer {
  color: white;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-brand .logo-img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icon img:hover {
  transform: translateY(-3px);
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 40px;
}

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

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 19.3px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.contact-description {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #f9a825;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #f9a825;
}

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

.btn-form {
  width: 100%;
  background: #f9a825;
  border: none;
  color: white;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-form:hover {
  background: #e0991f;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: #333;
  color: white;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 20px;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo-img {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-list {
  list-style: none;
}

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

.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f9a825;
}

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

.footer-copyright {
  color: #ccc;
  font-size: 14px;
}

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

.footer-legal .footer-link {
  font-size: 14px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .payment-interface-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .payment-content {
    padding-left: 0;
  }

  .employee-wellbeing-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .employee-content {
    padding-right: 0;
  }

  .sales-boost-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .sales-content {
    padding-left: 0;
  }

  .trusted-partner-title {
    font-size: 36px;
  }

  .trusted-partner-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .how-it-works-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .user-type-label {
    font-size: 16px;
    padding: 10px 28px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
  }

  .step-card {
    padding: 30px 24px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 15px;
  }

  .merchants-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .merchants-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin-bottom: 0;
  }

  .merchant-card {
    padding: 16px 12px;
    font-size: 15px;
    height: 50px;
  }

  .merchants-cta-button {
    font-size: 16px;
    padding: 16px 36px;
    height: 50px;
  }

  .download-content {
    gap: 50px;
  }

  .download-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .download-buttons {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .download-button {
    min-width: 180px;
    height: 55px;
    padding: 14px 20px;
  }

  .phone-image {
    max-height: 500px;
  }

  .employee-title {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .employee-offer .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin-bottom: 60px;
  }

  .employee-offer .step-card {
    padding: 30px 24px;
  }

  .employee-offer .step-title {
    font-size: 20px;
  }

  .employee-offer .step-description {
    font-size: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin-bottom: 50px;
  }

  .feature-text {
    font-size: 16px;
  }

  .employee-cta-button {
    font-size: 16px;
    padding: 16px 36px;
  }

  .faq-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .faq-subtitle {
    font-size: 18px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
  }

  .faq-card {
    padding: 24px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .logos-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
    max-width: 500px;
    margin-bottom: 30px;
  }

  .logo-separator {
    width: 50px;
    height: 2px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    justify-items: center;
  }

  .stat-item {
    min-height: 100px;
    padding: 24px 20px;
    max-width: 200px;
  }

  .stat-text {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Section finale - Tablette */
  .final-section {
    padding: 60px 0 0;
  }

  .final-section .container {
    align-items: center;
  }

  .cta-box {
    padding: 40px 50px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 800px;
  }

  .cta-text {
    text-align: center;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    gap: 15px;
    flex-wrap: wrap;
  }

  .cta-button {
    min-width: 180px;
    height: 55px;
    padding: 14px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 20px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 20px;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-secondary,
  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }

  .cta-payment-title {
    font-size: 48px;
  }

  .cta-payment-description {
    font-size: 18px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-featured {
    transform: none;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 16px;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
  }

  .contact-title {
    font-size: 36px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  /* Section finale - Mobile */
  .final-section {
    padding: 40px 0 0;
  }

  .final-section .container {
    align-items: center;
  }

  .cta-box {
    padding: 30px 20px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 600px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-content {
    gap: 30px;
    margin-bottom: 15px;
  }

  .footer-brand .logo-img {
    height: 35px;
  }

  .social-icons {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-copyright {
    text-align: center;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .cta-payment-title {
    font-size: 36px;
  }

  .cta-payment-description {
    font-size: 16px;
  }

  .payment-title {
    font-size: 36px;
  }

  .payment-description {
    font-size: 18px;
  }

  .payment-benefit-item {
    font-size: 16px;
  }

  .employee-title {
    font-size: 36px;
  }

  .employee-description {
    font-size: 18px;
  }

  .employee-benefit-item {
    font-size: 16px;
  }

  .sales-title {
    font-size: 36px;
  }

  .sales-description {
    font-size: 18px;
  }

  .sales-benefit-item {
    font-size: 16px;
  }

  .trusted-partner-title {
    font-size: 28px;
  }

  .trusted-partner-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .how-it-works-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .user-type-label {
    font-size: 14px;
    padding: 8px 24px;
  }

  .step-card {
    padding: 24px 20px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .step-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .step-description {
    font-size: 14px;
  }

  .merchants-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .merchants-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 600px;
    margin-bottom: 0;
  }

  .merchant-card {
    padding: 14px 10px;
    font-size: 14px;
    height: 46px;
  }

  .merchants-cta-button {
    font-size: 14px;
    padding: 14px 32px;
    height: 46px;
  }

  .download-content {
    gap: 40px;
  }

  .download-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .download-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .download-button {
    padding: 12px 18px;
    min-width: 160px;
    height: 50px;
  }

  .button-icon {
    width: 20px;
    height: 20px;
  }

  .download-button span {
    font-size: 13px;
  }

  .phone-image {
    max-height: 400px;
  }

  .employee-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .employee-offer .steps-container {
    gap: 16px;
    margin-bottom: 40px;
  }

  .employee-offer .step-card {
    padding: 24px 20px;
  }

  .employee-offer .step-number {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .employee-offer .step-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .employee-offer .step-description {
    font-size: 14px;
  }

  .features-grid {
    gap: 16px;
    margin-bottom: 40px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
  }

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

  .employee-cta-button {
    font-size: 14px;
    padding: 14px 32px;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-grid {
    gap: 16px;
  }

  .faq-card {
    padding: 20px;
  }

  .faq-question {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .faq-chevron {
    width: 18px;
    height: 18px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .logos-container {
    padding: 15px 20px;
    max-width: 400px;
    margin-bottom: 25px;
  }

  .partner-logo {
    height: 35px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 400px;
    justify-items: center;
  }

  .stat-item {
    min-height: 80px;
    padding: 20px 16px;
    max-width: 180px;
  }

  .stat-text {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .section-title {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }

  .benefits-title {
    font-size: 32px;
  }

  .benefits-description {
    font-size: 16px;
  }

  .cta-title {
    font-size: 28px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-form {
    padding: 24px;
  }

  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: 24px;
  }

  /* Section finale - Très petits écrans */
  .final-section {
    padding: 30px 0 0;
  }

  .final-section .container {
    align-items: center;
  }

  .cta-box {
    padding: 20px 16px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 500px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 14px;
  }

  .footer {
    padding-top: 30px;
  }

  .footer-content {
    gap: 20px;
    margin-bottom: 10px;
  }

  .footer-brand .logo-img {
    height: 30px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-link {
    font-size: 16px;
  }

  .footer-copyright {
    font-size: 12px;
    margin-top: 20px;
  }
}

/* ===== ANIMATIONS ET TRANSITIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animations pour desktop uniquement */
@media (min-width: 769px) {
  /* Animation de la navigation */
  .nav-container {
    animation: slideInFromTop 0.8s ease-out;
  }
  
  .nav-menu li {
    animation: slideInFromTop 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
  
  .nav-actions {
    animation: slideInFromTop 0.8s ease-out 0.4s both;
  }
  
  /* Animation du contenu hero */
  .hero-content {
    animation: slideInFromLeft 1s ease-out 0.3s both;
  }
  
  .hero-visual {
    animation: slideInFromRight 1s ease-out 0.5s both;
  }
  
  /* Animation des éléments du hero */
  .hero-title {
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  .hero-description {
    animation: fadeInUp 1s ease-out 0.8s both;
  }
  
  .hero-actions {
    animation: fadeInUp 1s ease-out 1s both;
  }
  
  /* Animation des boutons hero */
  .btn-hero-primary {
    animation: scaleIn 0.6s ease-out 1.2s both;
  }
  
  .btn-hero-secondary {
    animation: scaleIn 0.6s ease-out 1.3s both;
  }
  
  /* Animation de l'image hero */
  .hero-image {
    animation: scaleIn 1.2s ease-out 0.7s both;
  }
  
  /* Classes pour les animations au scroll */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
  }
  
  .animate-on-scroll-left.animated {
    opacity: 1;
    transform: translateX(0);
  }
  
  .animate-on-scroll-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
  }
  
  .animate-on-scroll-right.animated {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-card,
.testimonial-card,
.pricing-card {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== MODALES ET FORMULAIRES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease-out;
}

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

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 1001;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #f9a825;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
  padding: 40px 40px 0 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.modal-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px 0;
  padding: 0 40px;
  line-height: 1.5;
}

.contact-form {
  padding: 0 40px 40px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f9a825;
  box-shadow: 0 0 0 3px rgba(249, 168, 37, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

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

.form-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #f9a825 0%, #ff6b35 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-top: 8px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 168, 37, 0.3);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* Responsive pour les modales */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    width: 95%;
    max-width: none;
  }
  
  .modal-title {
    font-size: 24px;
    padding: 30px 20px 0 20px;
  }
  
  .modal-subtitle {
    padding: 0 20px;
    font-size: 14px;
  }
  
  .contact-form {
    padding: 0 20px 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
  
  .close {
    top: 15px;
    right: 20px;
    font-size: 24px;
  }
}

/* ===== ACCESSIBILITÉ ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible pour l'accessibilité */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid #f9a825;
  outline-offset: 2px;
}

/* ===== UTILITAIRES ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
