.elementor-kit-13{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-13 e-page-transition{background-color:#FFBC7D;}.elementor-kit-13 a{color:#FFFFFF;}.elementor-kit-13 a:hover{color:#FF9F00;text-decoration:underline;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.--n-menu-title-color-active {
color: white;
    
}
/* Variables globales */
:root {
  --primary-blue: #2535c7;
  --primary-orange: #ff9f00;
  --success-green: #2535c7;
  --pink-social: #2535c7;
  --purple-crm: #2535c7;
  --orange-analytics: #f59e0b;
  --dark-text: #1f2937;
  --light-text: #6b7280;
  --white: #ffffff;
  --gradient-main: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 16px;
}

/* Reset et base */
* {
  box-sizing: border-box;
}

/* Container principal */
.marketing-module {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.module-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.module-container:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

/* Header module */
.module-header {
  text-align: center;
  padding: 40px 30px 30px;
  background: var(--gradient-main);
  color: var(--white);
  position: relative;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Couleurs spécifiques par module */
.seo-module .module-header {
  background: linear-gradient(135deg, var(--success-green) 0%, #2535c7 100%);
}

.sea-module .module-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #2535c7 100%);
}

.sma-module .module-header {
  background: linear-gradient(135deg, var(--pink-social) 0%, #2535c7 100%);
}

.crm-module .module-header {
  background: linear-gradient(135deg, var(--purple-crm) 0%, #2535c7 100%);
}

.analytics-module .module-header {
  background: linear-gradient(135deg, var(--orange-analytics) 0%, #2535c7 100%);
}

.module-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.module-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
  font-weight: 400;
}

/* Contenu module */
.module-content {
  padding: 40px 30px;
}

/* Grille des fonctionnalités */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #f8fafc;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0 0 10px;
}

.feature-item p {
  color: var(--light-text);
  margin: 0;
  line-height: 1.6;
}

/* Statistiques */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 12px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--light-text);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Section CTA */
.cta-section {
  text-align: center;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Boutons */
.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Animation flottante */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .marketing-module {
    padding: 40px 15px;
  }
  
  .module-header {
    padding: 30px 20px 25px;
  }
  
  .module-title {
    font-size: 2rem;
  }
  
  .module-subtitle {
    font-size: 1rem;
  }
  
  .module-content {
    padding: 30px 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .cta-section {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .module-title {
    font-size: 1.75rem;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}/* End custom CSS */