/**
* Template Name: Invent
* Template URL: https://bootstrapmade.com/invent-bootstrap-business-template/
* Updated: May 12 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #eb5a53; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #eb5a53; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #eb5a53; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Variables étendues pour l'uniformisation */
:root {
  /* Variables existantes conservées */
  --neutral-bg-1: #fafafa;
  --neutral-bg-2: #f5f5f5;
  --neutral-bg-3: #f8f9fa;
  --neutral-bg-4: #f0f2f5;
  --text-light: #666666;
  --text-medium: #777777;
  --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
  --border-radius: 20px;
  --transition: all 0.3s ease;
}

/* Typographie globale uniformisée */
.section-big-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-subtitle-italic {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #666666;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.section-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: #777777;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Animations globales */
.hover-lift {
  transition: var(--transition);
}

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


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f4f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

/*--------------------------------------------------------------
# process
--------------------------------------------------------------*/
/* Section How We Work - Style minimaliste avec sous-titre */
#how-we-work.process-section {
  position: relative;
  background: none;
  padding: 0;
  min-height: auto;
}

.step-screen {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

/* Backgrounds neutres alternés */
.step-screen[data-step="1"] {
  background: #fafafa;
}

.step-screen[data-step="2"] {
  background: #f5f5f5;
}

.step-screen[data-step="3"] {
  background: #ffffff;
}

.step-screen[data-step="4"] {
  background: #f8f9fa;
}

.step-screen[data-step="5"] {
  background: #f0f2f5;
}

.step-content {
  text-align: left;
  max-width: 800px;
  padding: 0 2rem;
  transform: translateY(30px);
  opacity: 0;
}

/* Gros chiffre */
.step-number {
  font-size: clamp(8rem, 15vw, 12rem);
  font-weight: 700;
  color: #e5e5e5;
  margin-bottom: -2rem;
  line-height: 0.8;
  font-family: 'Arial', sans-serif;
  letter-spacing: -0.02em;
  user-select: none;
  position: relative;
  z-index: 1;
}

/* Gros titre */
.step-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

/* Sous-titre */
.step-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Paragraphe */
.step-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: #777777;
  max-width: 800px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Indicateur de progression */
#progress-indicator {
  position: fixed;
  top: 2rem;
  left: 2rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(26, 26, 26, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  z-index: 1000;
  opacity: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Indicateurs latéraux simplifiés */
.side-indicators {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
}

.side-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.side-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.side-dot:hover {
  background: rgba(26, 26, 26, 0.6);
  transform: scale(1.2);
}

.side-dot:hover::before {
  background: rgba(26, 26, 26, 0.1);
}

.side-dot.active {
  background: #1a1a1a;
  transform: scale(1.3);
}

.side-dot.active::before {
  background: rgba(26, 26, 26, 0.15);
}

/* Style spécial pour la dernière étape */
.step-screen[data-step="4"] {
  background: linear-gradient(135deg, var(--accent-color) 0%, #d64a42 100%) !important;
}

.step-screen[data-step="4"] .step-number {
  color: rgba(255, 255, 255, 0.15);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.step-screen[data-step="4"] .step-title {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-screen[data-step="4"] .step-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.step-screen[data-step="4"] .step-description {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Effets d'hover pour la dernière étape */
.step-screen[data-step="4"]:hover .step-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.step-screen[data-step="4"]:hover .step-subtitle {
  color: rgba(255, 255, 255, 0.95);
}

.step-screen[data-step="4"]:hover .step-description {
  color: rgba(255, 255, 255, 0.9);
}

.step-screen[data-step="4"]:hover .step-number {
  color: rgba(255, 255, 255, 0.25);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}



/* Responsive */
@media (max-width: 768px) {
  .step-screen {
      padding: 0 1rem;
  }
  
  .step-content {
      padding: 0 1rem;
  }
  
  .step-number {
      margin-bottom: -1.5rem;
  }
  
  .step-title {
      margin-bottom: 0.8rem;
  }
  
  .step-subtitle {
      margin-bottom: 1.5rem;
  }
  
  .side-indicators {
      right: 1rem;
  }
  
  #progress-indicator {
      top: 1rem;
      left: 1rem;
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
  }

  .step-screen[data-step="5"] .step-title {
    color: #ffffff;
  }

  .step-screen[data-step="5"] .step-subtitle {
      color: rgba(255, 255, 255, 0.9);
  }

  .step-screen[data-step="5"] .step-description {
      color: rgba(255, 255, 255, 0.85);
  }
}

@media (max-width: 480px) {
  .step-content {
      padding: 0 0.5rem;
  }
  
  .step-number {
      margin-bottom: -1rem;
  }
  
  .step-title {
      margin-bottom: 0.5rem;
  }
  
  .step-subtitle {
      margin-bottom: 1rem;
  }
  
  .step-description {
      line-height: 1.5;
  }
}

/* Animations d'hover */
.step-title {
  transition: all 0.3s ease;
}

.step-screen:hover .step-title {
  transform: translateY(-2px);
  color: #000000;
}

.step-subtitle {
  transition: all 0.3s ease;
}

.step-screen:hover .step-subtitle {
  color: #555555;
  transform: translateY(-1px);
}

/* Effet subtil sur le numéro au hover */
.step-screen:hover .step-number {
  color: #d0d0d0;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

/* Animation subtile du texte */
.step-description {
  transition: all 0.3s ease;
}

.step-screen:hover .step-description {
  color: #666666;
  transform: translateY(-1px);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 80px;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero Section - Style uniformisé */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fafafa;
  padding: 6rem 0 4rem;
  position: relative;
}

#hero .badge-wrapper {
  margin-bottom: 2rem;
}

#hero .badge-wrapper .d-inline-flex {
  padding: 0.8rem 1.5rem;
  background: rgba(235, 90, 83, 0.1);
  border: 1px solid rgba(235, 90, 83, 0.2);
  border-radius: 50px;
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  font-weight: 600;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

#hero .badge-wrapper .d-inline-flex:hover {
  background: rgba(235, 90, 83, 0.15);
  transform: translateY(-2px);
}

#hero .hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  font-weight: 800 !important;
  color: #1a1a1a !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 1.5rem !important;
}

#hero .hero-description {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem) !important;
  font-weight: 500 !important;
  color: #666666 !important;
  line-height: 1.4 !important;
  margin-bottom: 2.5rem !important;
  font-style: italic;
}

#hero .cta-wrapper {
  margin-bottom: 4rem;
}

.btn-primary {
  color: white;
  background: var(--accent-color) !important;
  border: none !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.btn-primary:hover {
  color:white;
  background: #d64a42 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(235, 90, 83, 0.3) !important;
}

.btn-outline {
  color: var(--accent-color) !important;
  background: transparent !important;
  border: 2px solid var(--accent-color) !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.btn-outline:hover {
  color: white !important;
  background: var(--accent-color) !important;
  box-shadow: 0 8px 25px rgba(235, 90, 83, 0.3) !important;
  transform: translateY(-3px) !important;
}


#hero .hero-image {
  position: relative;
}

#hero .hero-image img {

  transition: all 0.3s ease;
}


/* Responsive Hero */
@media (max-width: 768px) {
  #hero {
      padding: 8rem 0 3rem;
  }
  
  #hero .feature-box {
      margin-bottom: 2rem;
      padding: 1.5rem !important;
  }
  
  #hero .feature-icon {
      width: 60px !important;
      height: 60px !important;
      margin-right: 1rem !important;
  }
  
  #hero .feature-icon i {
      font-size: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  #hero .feature-box {
      text-align: center;
      flex-direction: column !important;
  }
  
  #hero .feature-icon {
      margin-right: 0 !important;
      margin-bottom: 1.5rem !important;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* About Section - Design moderne */
.about-section {
  background: none;
  padding: 0;
  position: relative;
}

/* Section principale */
.about-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #fafafa;
  padding: 6rem 0;
}

.about-content {
  max-width: 600px;
}

.section-badge {
  display: inline-block;
  background: rgba(235, 90, 83, 0.1);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(235, 90, 83, 0.2);
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: #666666;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.about-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: #777777;
  margin-bottom: 2.5rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #555555;
  transition: all 0.3s ease;
}

.feature-item:hover {
  color: #333333;
  transform: translateX(5px);
}

.feature-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-right: 1rem;
  min-width: 25px;
}

/* Visuel About */
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  position: relative;
  z-index: 2;
}



.floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent-color);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(235, 90, 83, 0.3);
  z-index: 3;
  min-width: 150px;
  text-align: center;
}
.floating-card h4{
  color: white;
}

.floating-card .card-icon i {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.floating-card h4 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.floating-card p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* Section statistiques - 4 colonnes sur la même ligne */
.about-stats {
  background: #ffffff;
  padding: 6rem 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-item.highlight {
  background: linear-gradient(135deg, var(--accent-color), #d64a42);
  color: white;
  border: none;
}

.stat-item.highlight:hover {
  box-shadow: 0 15px 40px rgba(235, 90, 83, 0.3);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.stat-item.highlight .stat-number {
  color: white;
}

.stat-number span {
  font-size: 0.7em;
}

.stat-label {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stat-item.highlight .stat-label {
  color: white;
}

.stat-description {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #777777;
  line-height: 1.4;
}

.stat-item.highlight .stat-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Section partenaires */
.about-partners {
  background: #f5f5f5;
  padding: 6rem 0;
}

.partners-content h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.partners-content p {
  font-size: 1.2rem;
  color: #777777;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.partner-item img, .partners-visual img{
  max-width : 300px;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.partner-info p {
  font-size: 1rem;
  color: #666666;
  margin: 0;
}

.plus-icon {
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 600;
}

.partners-visual img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.partners-visual:hover img {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive - garder 4 colonnes même sur tablette */
@media (max-width: 1024px) {
  .stats-grid {
      gap: 1.5rem;
      max-width: 1000px;
  }
  
  .stat-item {
      padding: 2rem 1.2rem;
  }
}

@media (max-width: 992px) {
  .about-main {
      padding: 4rem 0;
  }
  
  .about-stats {
      padding: 4rem 0;
  }
  
  .about-partners {
      padding: 4rem 0;
  }
  
  .floating-card {
      bottom: -20px;
      right: -20px;
      padding: 1.5rem;
      min-width: 120px;
  }
}

@media (max-width: 768px) {
  .about-content {
      margin-bottom: 3rem;
  }
  
  .stats-grid {
      gap: 1rem;
      max-width: 100%;
  }
  
  .stat-item {
      padding: 1.8rem 1rem;
  }
  
  .stat-number {
      font-size: clamp(2rem, 5vw, 2.8rem);
      margin-bottom: 0.8rem;
  }
  
  .stat-label {
      font-size: clamp(1rem, 2.5vw, 1.1rem);
      margin-bottom: 0.3rem;
  }
  
  .stat-description {
      font-size: clamp(0.8rem, 2vw, 0.9rem);
  }
  
  .partner-logos {
      flex-direction: column;
      align-items: stretch;
  }
  
  .plus-icon {
      transform: rotate(90deg);
      margin: 1rem 0;
  }
  
  .floating-card {
      position: relative;
      bottom: auto;
      right: auto;
      margin-top: 2rem;
      margin-left: auto;
      margin-right: auto;
      width: fit-content;
  }
}

/* Pour les très petits écrans, on peut passer à 2 lignes de 2 */
@media (max-width: 576px) {
  .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  }
  
  .stat-item {
      padding: 1.5rem 0.8rem;
  }
  
  .floating-card {
      padding: 1.2rem;
      min-width: 100px;
  }
  
  .floating-card h4 {
      font-size: 2rem;
  }
  
  .stat-number {
      font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}

/* Pour les écrans très larges */
@media (min-width: 1400px) {
  .stats-grid {
      max-width: 1300px;
      gap: 3rem;
  }
  
  .stat-item {
      padding: 3rem 2rem;
  }
  
  .stat-number {
      font-size: 4rem;
  }
  
  .stat-label {
      font-size: 1.4rem;
  }
  
  .stat-description {
      font-size: 1.1rem;
  }
}



/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/

/* Section Title Wrapper */
.section-title-wrapper {
  padding: 6rem 0 3rem;
  background: #ffffff;
  position: relative;
}

.section-title-content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background: rgba(235, 90, 83, 0.1);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(235, 90, 83, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.section-badge:hover {
  background: rgba(235, 90, 83, 0.15);
  transform: translateY(-2px);
}

.section-main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  position: relative;
}

.section-main-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #d64a42);
  border-radius: 2px;
}

.section-title-wrapper .section-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: #777777;
  margin: 0;
  max-width: 600px;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title-wrapper {
      padding: 4rem 0 2rem;
  }
  
  .section-main-title::after {
      width: 60px;
      height: 3px;
      bottom: -10px;
  }
}

@media (max-width: 576px) {
  .section-title-wrapper {
      padding: 3rem 0 1.5rem;
  }
}


.how-we-work .process-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.how-we-work .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.how-we-work .process-item:last-child {
  padding-bottom: 0;
}

.how-we-work .process-item .content {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-we-work .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.how-we-work .process-item .content:hover .step-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: rotate(10deg);
}

.how-we-work .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.how-we-work .process-item .step-number {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0.4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.how-we-work .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.how-we-work .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.how-we-work .process-item .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.how-we-work .process-item .step-content h3 {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.how-we-work .process-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.how-we-work .process-item .arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  margin: 1rem 0;
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .how-we-work .process-container {
    padding: 1rem 0;
  }

  .how-we-work .process-item {
    padding-bottom: 2rem;
  }

  .how-we-work .process-item .content {
    border-width: 1px;
  }

  .how-we-work .process-item .content:hover {
    transform: translateY(-5px);
  }

  .how-we-work .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .how-we-work .process-item .step-number:hover {
    transform: translateX(-50%);
  }

  .how-we-work .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .how-we-work .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .how-we-work .process-item .step-icon i {
    font-size: 1.75rem;
  }

  .how-we-work .process-item .step-content h3 {
    font-size: 2.25rem;
  }

  .how-we-work .process-item .arrow {
    height: 60px;
    margin: 0.5rem 0;
  }
}



/* Section Profil recherché */
.profile-section {
  padding: 6rem 0;
  background: #f8f9fa;
  position: relative;
}

.profile-content {
  max-width: 600px;
}



.badge-icon {
  font-size: 1rem;
}

.profile-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.profile-checklist {
  margin-bottom: 3rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.checklist-item:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left-color: var(--accent-color);
}

.check-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.checklist-item:hover .check-icon {
  background: #10b981;
  transform: scale(1.1);
}

.check-icon i {
  font-size: 1.5rem;
  color: #10b981;
  transition: all 0.3s ease;
}

.checklist-item:hover .check-icon i {
  color: white;
}

.check-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.check-content p {
  font-size: 1rem;
  color: #777777;
  line-height: 1.5;
  margin: 0;
}

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

.btn-profile {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--accent-color);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(235, 90, 83, 0.3);
  margin-bottom: 1rem;
}

.btn-profile:hover {
  background: #d64a42;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(235, 90, 83, 0.4);
  color: white;
}

.btn-profile i {
  transition: transform 0.3s ease;
}

.btn-profile:hover i {
  transform: translateX(5px);
}

.cta-note {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
  font-style: italic;
}

/* Visuel profil */
.profile-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.profile-image {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a1a;
  animation: floatBadge 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-hardware {
  top: 15%;
  right: -20px;
  animation-delay: 0s;
}

.badge-eco {
  left: -20px;
  top: 50%;
  animation-delay: 1.5s;
}

.badge-innovation {
  bottom: 15%;
  right: -10px;
  animation-delay: 3s;
}

.badge-icon-float {
  font-size: 1.2rem;
}

@keyframes floatBadge {
  0%, 100% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-10px) rotate(1deg);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .profile-section {
      padding: 4rem 0;
  }
  
  .profile-content {
      margin-bottom: 3rem;
  }
  
  .floating-badge {
      position: relative;
      margin: 1rem;
      animation: none;
  }
  
  .badge-hardware,
  .badge-eco,
  .badge-innovation {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      display: inline-flex;
      margin: 0.5rem;
  }
  
  .image-container::after {
      content: '';
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .profile-section {
      padding: 3rem 0;
  }
  
  .checklist-item {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
      margin-bottom: 2rem;
      padding: 1.5rem 1rem;
  }
  
  .check-icon {
      margin: 0 auto;
  }
  
  .profile-cta {
      padding: 1.5rem;
  }
  
  .btn-profile {
      padding: 1rem 2rem;
      font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .checklist-item {
      padding: 1.2rem 0.8rem;
  }
  
  .check-content h4 {
      font-size: 1.1rem;
  }
  
  .check-content p {
      font-size: 0.9rem;
  }
}

/* Section Testimonials */
.testimonials-section {
  background: #ffffff;
  position: relative;
}

/* Header */
.testimonials-header {
  padding: 6rem 0 3rem;
  text-align: center;
  background: #ffffff;
}

.testimonials-header .section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(235, 90, 83, 0.1);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(235, 90, 83, 0.2);
  gap: 0.5rem;
}

.testimonials-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.testimonials-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #666666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Contenu principal */
.testimonials-main {
  min-height: 100vh;
  position: relative;
}

.testimonials-main .row {
  min-height: 100vh;
  margin: 0;
}

/* Galerie avec disposition classique */
.gallery-column {
  background: var(--accent-color);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.stacking-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 500px;
}

.stack-item {
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.stack-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stack-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.stack-item:hover .stack-image {
  transform: translateY(-5px);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}

/* Colonne droite - Témoignages */
.testimonials-column {
  background: #fafafa;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
}

.testimonials-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Témoignages en grille avec groupes */
.quotes-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.testimonial-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.testimonial-group.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
  height: fit-content;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
}

.quote-card.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-left-color: var(--accent-color);
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.quote-card:hover::before {
  transform: scaleX(1);
}

.quote-icon {
  width: 35px;
  height: 35px;
  background: rgba(235, 90, 83, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.quote-icon i {
  font-size: 1rem;
  color: var(--accent-color);
}

.quote-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 1rem;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
  font-family: Georgia, 'Times New Roman', serif;
}

.quote-author {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.author-details {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.company {
  color: var(--accent-color);
  font-weight: 600;
}

.promo {
  background: rgba(235, 90, 83, 0.1);
  color: var(--accent-color);
  padding: 0.15rem 0.5rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* CTA Final */
.testimonials-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent-color), #d64a42);
  text-align: center;
}

.cta-content h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-testimonials {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  color: var(--accent-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-testimonials:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--accent-color);
}

.btn-testimonials i {
  transition: transform 0.3s ease;
}

.btn-testimonials:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-main .row {
      flex-direction: column;
      min-height: auto;
  }
  
  .gallery-column {
      order: 2;
      padding: 2rem 1rem;
  }
  
  .testimonials-column {
      padding: 3rem 1.5rem;
      order: 1;
  }
  
  .stacking-gallery {
      max-width: 400px;
      gap: 1.5rem;
  }
  
  .testimonial-group {
      grid-template-columns: 1fr;
      gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .testimonials-header {
      padding: 4rem 0 2rem;
  }
  
  .testimonials-column {
      padding: 2rem 1rem;
  }
  
  .gallery-column {
      padding: 1.5rem 1rem;
  }
  
  .testimonial-group {
      gap: 1rem;
  }
  
  .quote-card {
      padding: 1.2rem;
  }
  
  .testimonials-cta {
      padding: 4rem 0;
  }
  
  .stacking-gallery {
      max-width: 350px;
      gap: 1.2rem;
  }
}

@media (max-width: 576px) {
  .testimonials-header .section-badge {
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
  }
  
  .testimonials-column {
      padding: 1.5rem 0.8rem;
  }
  
  .gallery-column {
      padding: 1rem 0.8rem;
  }
  
  .testimonial-group {
      gap: 0.8rem;
  }
  
  .quote-card {
      padding: 1rem;
  }
  
  .quote-text {
      font-size: 0.85rem;
      -webkit-line-clamp: 4;
  }
  
  .quote-icon {
      width: 30px;
      height: 30px;
      margin-bottom: 0.8rem;
  }
  
  .quote-icon i {
      font-size: 0.9rem;
  }
  
  .author-info h4 {
      font-size: 0.85rem;
  }
  
  .author-details {
      font-size: 0.75rem;
      gap: 0.5rem;
  }
  
  .promo {
      padding: 0.1rem 0.4rem;
      font-size: 0.65rem;
  }
  
  .btn-testimonials {
      padding: 1rem 2rem;
      font-size: 1rem;
  }
  
  .stacking-gallery {
      max-width: 300px;
      gap: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonials-header {
      padding: 3rem 0 2rem;
  }
  
  .testimonials-column {
      padding: 1rem 0.5rem;
  }
  
  .gallery-column {
      padding: 1rem 0.5rem;
  }
  
  .quote-card {
      padding: 0.8rem;
      border-radius: 12px;
  }
  
  .quote-text {
      font-size: 0.8rem;
      line-height: 1.3;
  }
  
  .quotes-grid {
      gap: 1.5rem;
  }
  
  .testimonial-group {
      gap: 0.6rem;
  }
  
  .cta-content h3 {
      font-size: 1.8rem;
  }
  
  .cta-content p {
      font-size: 1rem;
      margin-bottom: 2rem;
  }
  
  .btn-testimonials {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
  }
  
  .stacking-gallery {
      max-width: 280px;
      gap: 0.8rem;
  }
}

/* Animation states */
.quote-card.animate-in:hover {
  transform: translateY(-3px) !important;
}

.testimonial-group.visible .quote-card {
  transition: all 0.3s ease;
}

/* Effet de focus sur les cartes actives */
.testimonial-group.visible .quote-card {
  animation: fadeInUp 0.5s ease forwards;
}

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

/* Animation d'apparition progressive des images */
.stack-item:nth-child(1) {
  transition-delay: 0ms;
}

.stack-item:nth-child(2) {
  transition-delay: 200ms;
}

.stack-item:nth-child(3) {
  transition-delay: 400ms;
}

.partners-section {
  padding: 6rem 0 4rem 0;
  text-align: center;
}

.partners-header {
  margin-bottom: 3rem;
}

.partners-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.partners-description {
  color: #666;
  font-size: 1.18rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
}

.partner-logo {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  padding: 1.7rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  max-width: 200px;
  max-height: 120px;
  height: 110px;
}

.partner-logo img {
  max-width: 140px;
  max-height: 85px;
  object-fit: contain;
}

.partner-logo:hover {
  box-shadow: 0 7px 30px rgba(235,90,83,0.13);
  transform: scale(1.05) translateY(-4px);
}

@media (max-width: 680px) {
  .partners-grid {
    gap: 1.5rem;
  }
  .partner-logo {
    max-width: 120px;
    height: 65px;
    padding: 1rem 1.1rem;
  }
  .partners-section {
    padding: 4rem 0 2rem 0;
  }
}

