@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
  /* Colors */
  --color-primary: #1b3d41;
  --color-primary-light: #21494e;
  --color-secondary: #4da68a;
  --color-secondary-light: #52b98e;
  --color-accent: #ffeb96;
  --color-text-primary: #1f2937;
  --color-text-secondary: #4d4d4d;
  --color-text-light: rgba(255, 255, 255, 0.87);
  --color-background: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
  --color-success: #00a210;
  --color-warning: #f97316;
  --color-error: #ef4444;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 40px;
  --spacing-3xl: 64px;
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 4rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;


  --mobile-breakpoint: 768px;
  --tablet-breakpoint: 1024px;
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--color-text-primary);
  background-image: var(--color-background);
}

/* Styles de la navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.contact-page .navbar, .about-page .navbar {
  position: relative;
}

/* Burger menu pour mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 200;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.logo img {
  width: 50px;
  height: auto;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 2rem;
  transition: all 0.3s ease;
}

.navbar a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: var(--color-text-primary);
  overflow: hidden;
}

.nav-el::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--color-text-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  will-change: transform;
}

.nav-el:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cta-navb {
  background: var(--color-primary);
  color: white;
  font-family: inherit;
  padding: 0.5em 1.5em;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  box-shadow: inset 0 0 1.2em -0.5em var(--color-secondary);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-navb:hover {
  background: var(--color-secondary);
  transform: translateY(-1px);
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  color: var(--color-text-primary);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.hero-title {
  max-width: 600px;
  font-size: 4rem;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.highlight {
  background-color: var(--color-accent);
  color: inherit;
  padding: 0 4px;
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 500px;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--color-text-secondary);
}

.cssbuttons-io-button {
  background: var(--color-primary);
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--color-secondary);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #52b98e;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #52b98e;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.cssbuttons-secondary {
  background: transparent;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 500;
  padding: 0.35em 1.5em;
  height: 2.8em;
  border-radius: 0.9em;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Styles testimonial */
.testimonial-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid white;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 0 0 2px #fff;
}

.avatar-group img:first-child {
  margin-left: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #374151;
  align-items: flex-start;
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  line-height: 1;
}

.review-text {
  font-size: 0.85rem;
  color: #374151;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
    line-height: 2.8rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .navbar {
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    transform: translateX(0);
    left: auto;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .navbar {
    padding: 15px 20px;
  }
  
  .cta-navb {
    display: none;
  }
  
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cssbuttons-secondary, .cssbuttons-io-button {
    width: 100%;
    justify-content: center;
  }
  
  .testimonial-bar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .avatar-group img {
    width: 30px;
    height: 30px;
  }
  
  .review-info {
    margin-top: -15px;
    font-size: 0.8rem;
  }
  
  .stars {
    font-size: 1rem;
    justify-content: center;
    margin: 0 auto;
  }
  
  .review-text {
    font-size: 0.75rem;
  }
}




.wave-section {
  background-color: var(--color-primary);
  color: white;
  overflow: hidden;
  position: relative;
}

.custom-shape-divider-top-1745419433 {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1745419433 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 30px;
}

.wave-content {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.card-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  justify-content: center;
}

.card-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  transition: all 0.3s ease;
}

.card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card-image img:hover {
  transform: scale(1.02);
}

.card-text {
  min-width: 300px;
  max-width: 500px;
}

.card-text h2 {
  font-size: var(--font-size-3xl, 2rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.card-text p {
  font-size: var(--font-size-md, 1rem);
  margin-bottom: 15px;
  line-height: 1.6;
}

.card-text ul {
  line-height: 2rem;
  padding-left: 0;
  margin-bottom: 20px;
}

.card-text li {
  list-style: none;
  margin-bottom: 10px;
}

.cross-icon {
  color: var(--color-error);
  margin-right: 8px;
  font-size: 0.9rem;
}

.cta-wave {
  background: white;
  border-style: none;
  color: var(--color-primary);
  font-size: 17px;
  padding: 0.5em 1.7em;
  margin-top: 20px;
  height: 2.8em;
  border-radius: 0.9em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-wave:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-wave:active {
  transform: scale(0.97);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .card-layout {
    gap: 50px;
  }
  
  .card-text h2 {
    font-size: calc(var(--font-size-3xl, 2rem) * 0.9);
  }
  
  .wave-content {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .card-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .card-image {
    order: 1;
    max-width: 100%;
  }
  
  .card-text {
    order: 2;
    text-align: center;
    max-width: 100%;
  }
  
  .card-text ul {
    display: inline-block;
    text-align: center;
  }
  
  .wave-content {
    padding: 50px 20px;
  }
  
  .custom-shape-divider-top-1745419433 svg {
    height: 20px;
  }
}

@media (max-width: 480px) {
  .card-text h2 {
    font-size: calc(var(--font-size-3xl, 2rem) * 0.75);
  }
  
  .card-text ul {
    line-height: 2rem;
  }
  
  .wave-content {
    padding: 40px 15px;
  }
  
  .card-layout {
    gap: 30px;
  }
  
  .card-image img {
    border-radius: 15px;
  }
  
  .cta-wave {
    width: 100%;
    max-width: 250px;
  }
}





.market-numbers-section {
  padding: 5rem 1rem;
  text-align: center;
  background-color: var(--color-background, #fff);
}

.market-title {
  margin: 0 auto 3rem;
  font-size: var(--font-size-4xl);
  font-weight: 600;
  color: var(--color-text-primary, #111);
  display: inline-block;
  position: relative;
  max-width: 80%;
  line-height: 1.2;
}

.market-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}

.market-numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.market-number-block {
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-number-block.in-view {
  /* animate into view with stagger via --delay */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease var(--delay), transform 0.8s ease var(--delay);
}

.market-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
  position: relative;
  line-height: 1;
}

.market-number::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background: var(--color-primary);
  margin: 0.75rem auto 1rem;
  opacity: 0.5;
  border-radius: 1px;
}

.market-description {
  font-size: 1.125rem;
  color: var(--color-text-secondary, #444);
  margin: 0;
  line-height: 1.5;
}

.texte-chiffres {
  font-size: var(--font-size-xl);
  max-width: 600px;
  justify-content: center;
  margin: 50px auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .market-numbers-section {
    padding: 4rem 1rem;
  }
  
  .market-title {
    font-size: 2.25rem;
  }
  
  .market-numbers-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .market-numbers-section {
    padding: 3rem 1rem;
  }
  
  .market-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
  }
  
  .market-numbers-grid {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .market-number-block {
    padding: 2rem 1.5rem;
  }
  
  .market-number {
    font-size: 3.5rem;
  }
  
  .market-description {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .market-numbers-section {
    padding: 2.5rem 1rem;
  }
  
  .market-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  
  .market-numbers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .market-number-block {
    padding: 1.75rem 1.25rem;
  }
  
  .market-number {
    font-size: 3rem;
  }
  
  .market-description {
    font-size: 1rem;
  }
}








  .section-titlet {
    font-size: var(--font-size-4xl);
    text-align: center;
    margin-bottom: 10px;
  }
  
  .section-subtitlet {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
  }
  
  .main-wrapper h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .heading {
    font-size: var(--font-size-4xl);
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0.04em 0.04rem 0 #81b5ab;
  }
  
  .sectionl {
    overflow: hidden;
  }
  
  .wrapper {
    height: 100vh;
  }
  
  .list {
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    display: flex;
    position: relative;
    padding: 0.2rem;
  }
  
  .item {
    width: 100vw;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0%;
    box-shadow: rgb(149, 157, 165, 0.2) 0px 8px 24px;
    overflow: hidden;
  }
  
  .item_number {
    font-size: 1.5rem;
    height: 3rem;
    width: 3rem;
    margin-bottom: 0.5rem;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    position: absolute;
    top: 6rem;
    left: 3rem;
  }
  
  .item_content {
    background-image: var(--color-background);
    color: #292929;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    display: flex;
    position: relative;
    width: 50%;
  }
  
  .item_media {
    object-fit: cover;
    width: 50%;
    height: 100%;
  }
  
  .padding-global {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  
  .padding-vertical {
    padding: 2rem;
  }
  
  .realisations h1 {
    padding-bottom: 50px;
    text-align: center;
    margin: 0 auto;
    font-size: 50px;
    max-width: 800px;
    width: 100%;
  }
  
  .containerrr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    padding-bottom: 50px;
  }
  
  .card {
    width: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 
    0 1.8px 1.2px rgba(0, 0, 0, 0.056),
    0 4.7px 3.3px rgba(0, 0, 0, 0.081),
    0 8.5px 6px rgba(0, 0, 0, 0.1),
    0 15px 12px rgba(0, 0, 0, 0.119),
    0 25px 20px rgba(0, 0, 0, 0.144),
    0 50px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  .card-extension {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 12px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .card:hover .card-extension {
    transform: translateY(0);
    opacity: 1;
  }


  .feature-bigtitle {
    text-align: center;
    justify-content: center;
  }


  .feature-section h1 {
    font-size: var(--font-size-4xl);
    justify-content: center;
    margin: 80px 0 20px;
  }
  .feature-bigtitle h1::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}
  
  .feature-section .subtitle {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto 80px;
    max-width: 500px;
    color: #666;
  }

  .feature-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
  }
  
  .feature-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
  
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
    gap: 20px;
    padding: 0;
  }
  
  .feature-icon .icon-box {
    border: 4px solid #ebf6ea;
    padding: 10px;  
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5faf3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
  }

  .feature-icon .icon-box svg {
    width: 30px;
    height: 30px;
    color: var(--color-secondary);
  }

  .feature-content {
    flex: 1;
    text-align: left;
  }

  .feature-content a {
    text-decoration: none;
    color: var(--color-secondary)
  }
  
  .feature-title {
    font-size: 1.7rem;
    margin: 0 0 10px;
    color: var(--color-text-primary);
  }
  
  .feature-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0 0 25px;
  }

    .containeer {
    border: 1px solid #b8b8b8;
    border-radius: 12px;
    padding: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    background-color: transparent;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
  }
  
  .text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 55%;
  }
  
  .text-block h1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    margin: 0 0 10px 0;
    text-align: left;
  }
  
  .text-block p {
    font-size: 16px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    text-align: left;
  }
  
  .text-block p span {
    color: var(--color-secondary);
    font-weight: 600;
    cursor: pointer;
  }
  
  .buttoun {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background-color: transparent;
    border: 1px solid var(--color-secondary);
    border-radius: 0.9em;
    box-shadow: 0 1px 3px rgba(13, 16, 23, 0.06);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
  }

  
  .buttoun:hover {
    background-color: #f5f5f5;
  }
  
  .buttoun svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

@media (max-width: 768px) {
  .feature-section h1 {
    font-size: 2rem;
    text-align: center;
    margin: 60px 0 15px;
  }

  .feature-section .subtitle {
    font-size: 1rem;
    margin-bottom: 60px;
    padding: 0 20px;
  }

  .feature-container {
    padding: 0 20px;
    margin-bottom: 40px;
    box-sizing: border-box;
  }

  .feature-grid {
    flex-direction: column;
    align-items: left;
    gap: 30px;
  }

  .feature-item {
    max-width: 100%;
    align-items: left ;
    text-align: center;
  }

  .feature-content {
    text-align: left;
  }

  .feature-title {
    font-size: 1.4rem;
  }

  .feature-description {
    font-size: 1rem;
  }

  .containeer {
    display: block;
    margin: 0 20px;
  }

  .text-block {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .text-block h1 {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    margin: 0 0 10px 0;
    text-align: left;
  }
  
  .text-block p {
    font-size: 16px;
    line-height: 150%;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    text-align: left;
  }
  
  .text-block p span {
    color: var(--color-secondary);
    font-weight: 600;
    cursor: pointer;
  }
  
  .buttoun {
    display: flex;
    margin-left: 0 auto;
    justify-content: center;
  }

  
  .buttoun:hover {
    background-color: #f5f5f5;
  }
  
  .buttoun svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
}

  


  /* Footer Styles */
.site-footer {
  position: relative;
  background-color: var(--color-primary);
  color: #ffffff;
  margin-top: 100px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo img {
  width: 200px;
  height: auto;
}

.footer-tagline {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}



.footer-heading {
  font-size: 1.2rem;
  margin: 0 0 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 3px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a, .legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

.contact-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-item.email::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%234da68a' viewBox='0 0 24 24'%3E%3Cpath d='M0 3v18h24v-18h-24zm21.518 2l-9.518 7.713-9.518-7.713h19.036zm-19.518 14v-11.817l10 8.104 10-8.104v11.817h-20z'/%3E%3C/svg%3E");
}

.contact-item.phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%234da68a' viewBox='0 0 24 24'%3E%3Cpath d='M20 22.621l-3.521-6.795c-.008.004-1.974.97-2.064 1.011-2.24 1.086-6.799-7.82-4.609-8.994l2.083-1.026-3.493-6.817-2.106 1.039c-7.202 3.755 4.233 25.982 11.6 22.615.121-.055 2.102-1.029 2.11-1.033z'/%3E%3C/svg%3E");
}

.contact-item.location::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%234da68a' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c-4.198 0-8 3.403-8 7.602 0 4.198 3.469 9.21 8 16.398 4.531-7.188 8-12.2 8-16.398 0-4.199-3.801-7.602-8-7.602zm0 11c-1.657 0-3-1.343-3-3s1.343-3 3-3 3 1.343 3 3-1.343 3-3 3z'/%3E%3C/svg%3E");
}

.footer-cta {
  margin-top: 24px;
}

.footer-button {
  display: inline-block;
  background: var(--color-secondary);
  color: white;
  font-family: inherit;
  padding: 0.5em 1.5em;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-button:hover {
  background: #3d9678;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  position: relative;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social {
  position: absolute;
  display: flex;
  gap: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px);
}

.social-icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-icon.linkedin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E");
}

.social-icon.instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

.social-icon.twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M24 4.557c-.883.392-1.832.656-2.828.775 1.017-.609 1.798-1.574 2.165-2.724-.951.564-2.005.974-3.127 1.195-.897-.957-2.178-1.555-3.594-1.555-3.179 0-5.515 2.966-4.797 6.045-4.091-.205-7.719-2.165-10.148-5.144-1.29 2.213-.669 5.108 1.523 6.574-.806-.026-1.566-.247-2.229-.616-.054 2.281 1.581 4.415 3.949 4.89-.693.188-1.452.232-2.224.084.626 1.956 2.444 3.379 4.6 3.419-2.07 1.623-4.678 2.348-7.29 2.04 2.179 1.397 4.768 2.212 7.548 2.212 9.142 0 14.307-7.721 13.995-14.646.962-.695 1.797-1.562 2.457-2.549z'/%3E%3C/svg%3E");
}

.social-icon.facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 8h-3v4h3v12h5v-12h3.642l.358-4h-4v-1.667c0-.955.192-1.333 1.115-1.333h2.885v-5h-3.808c-3.596 0-5.192 1.583-5.192 4.615v3.385z'/%3E%3C/svg%3E");
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: var(--color-secondary);
}

/* Responsiveness */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 40px 20px 20px;
  }
  
  .footer-bottom {
    padding: 15px 20px;
  }

  .footer-social {
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    left: 0;
    transform: translateX(0);
  }
}
.testimonials-section {
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-title {
  font-size: var(--font-size-4xl);
  margin-bottom: 16px;
  color: var(--color-text-primary);
}

.testimonials-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  position: relative;
  /* Suppression de overflow: hidden pour permettre à l'image de déborder */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-preview {
  position: relative;
  background-color: #f5f7fa;
  z-index: 1;
  padding: 0;
  border-radius: 16px 16px 0 0;
  overflow: visible; /* Pour permettre le débordement */
}

.browser-mockup {
  margin: 15px 15px 0;
  border-radius: 8px 8px 0 0;
  overflow: visible; /* Pour permettre le débordement */
  position: relative;
}

.browser-bar {
  background: #f0f0f0;
  border-radius: 8px 8px 0 0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: #ff5f57; }
.dot-yellow { background-color: #febc2e; }
.dot-green { background-color: #28c840; }

.browser-address {
  background-color: white;
  border-radius: 4px;
  margin-left: 16px;
  padding: 4px 12px;
  font-size: 11px;
  color: #777;
  flex-grow: 1;
}

.image-container {
  position: relative;
  overflow: visible; /* Crucial pour permettre le débordement */
}

.browser-screenshot {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.6s;
  transform-origin: center;
  filter: brightness(1);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
  z-index: 10;
}

.overlay-text {
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
}

/* Effet de débordement au hover */
.browser-mockup:hover .browser-screenshot {
  transform: scale(1.15);
  filter: brightness(0.6); /* Assombrissement direct de l'image sans opacité */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 15; /* S'assurer que l'image est au-dessus pendant et après le survol */
}

.browser-mockup:hover .image-overlay {
  opacity: 1;
  z-index: 20;
}

.browser-mockup:hover .overlay-text {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.testimonial-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: white;
  border-radius: 0 0 16px 16px;
  z-index: 0;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-text::before {
  content: "“";
  font-size: 80px;
  color: #1b3d4130;
  position: absolute;
  top: -40px;
  left: -15px;
  z-index: 0;
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  }

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 4px;
}

.author-context {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}





.texxxt {
  margin-top: 100px;
  justify-content: center;
  align-items: center;
}

.texxxt h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: 16px;
  color: var(--color-text-primary);
  text-align: center;
  justify-content: center;
}

.texxxt h1::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}

.texxxt p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}


:root {
  --slide-width-mobile: 60vw;   /* largeur d’un slide sur mobile */
  --slide-width-sm: 25rem;      /* largeur d’un slide à partir de sm */
}

.step-section {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem;
  padding-top: 2.5rem;
}
@media (min-width:1024px) {
  .step-section {
    padding-top: 0;
  }
}

/* Titre */
.step-title {
  max-width: 95vw;
  margin: 1.25rem 0;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
}
@media (min-width:1024px) {
  .step-title {
    max-width: 60rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Zone carousel */
.step-carousel-wrapper {
  width: var(--slide-width-mobile);
}
@media (min-width:640px) {
  .step-carousel-wrapper {
    width: var(--slide-width-sm);
    padding-left: 2.5rem;
  }
}

/* Liste de slides */
.step-carousel {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  transform: translate3d(0,0,0);
  transition: transform 0.5s ease-in-out;
}
@media (min-width:640px) {
  .step-carousel {
    gap: 2.5rem; 
    margin-bottom: 0;
  }
}

/* Chaque slide */
.step-item {
  position: relative;
  list-style: none;
  flex: 0 0 auto;
  width: var(--slide-width-mobile);
}
@media (min-width:640px) {
  .step-item {
    width: 100%;
  }
}

/* Image de slide */
.step-image {
  display: block;
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 1rem;
  transition: opacity 0.5s ease-in-out;
}

/* Carte d’info */
.step-card-wrapper {
  position: absolute;
  left: 0;
  bottom: -2.5rem;
  padding: 0rem 1rem 1rem;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease-in-out;
  transform: translateX(1.25rem) scale(0);
}
@media (min-width:640px) {
  .step-card-wrapper {
    bottom: 2.5rem;
    transform: translateX(-2.5rem) scale(0);
  }
}
.step-card-wrapper.active {
  transform: translateX(1.25rem) scale(1);
}
@media (min-width:640px) {
  .step-card-wrapper.active {
    transform: translateX(-2.5rem) scale(1);
  }
}

/* Numéro rond */
.step-number {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.125rem;
}

/* Texte interne */
.step-info {
  margin-left: 1.25rem;
}
.step-info-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.step-info-text {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Contrôles flèches */
.step-controls {
  display: flex;
  gap: 1rem;
}
.step-btn {
  appearance: none;
  border: none;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 20px 25px -5px rgba(0,0,0,0.1),
    0 10px 10px -5px rgba(0,0,0,0.04);
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.step-btn:focus {
  outline: 2px solid #ff7d00;
  outline-offset: 2px;
}

.edit-section {
  padding: 0px 30px 60px;
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-top: -50px;
}

.edit-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
  align-items: center;
}

.edit-content {
  flex: 1 1 500px;
}

.edit-header {
  margin-bottom: 60px;
  text-align: center;
  justify-content: center;
}

.edit-step {
  font-size: 14px;
  color: var(--ah-success, #21a67a);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.edit-title {
  font-size: 2.5rem;
  color: var(--color-text-primary, #2c2c2c);
  margin-bottom: 20px;
}

.edit-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}

.edit-description {
  font-size: 18px;
  color: var(--color-text-secondary, #3c3c3c);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.edit-features {
  list-style: none;
  padding: 0;
}

.feature-itemm {
  display: flex;
  max-width: 500px;
  gap: 15px;
  margin-bottom: 25px;
  flex-direction: row;
}

.feature-iconn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}

.feature-iconn svg {
  width: 30px;
  height: 30px;
}

.feature-text {
  flex-grow: 1;
}

.feature-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text-primary, #2c2c2c);
  display: block;
  margin-bottom: 5px;
}

.feature-description {
  font-size: 16px;
  color: var(--color-text-secondary, #3c3c3c);
  line-height: 1.5;
}

.edit-image {
  display: flex;
  justify-content: center;
}

.edit-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--card-borderRadius, 15px) / 2);
  box-shadow: var(--card-boxShadow, 0px 10px 30px -10px rgba(0, 0, 0, 0.08));
  display: block;
}

/* Responsive ajusté */
@media (max-width: 1024px) {
  .edit-container {
    flex-direction: column;
    gap: 40px;
  }

  .edit-content,
  .edit-image {
    flex: 1 1 100%;
  }

  .edit-header {
    margin-bottom: 40px;
  }

  .edit-description {
    padding: 0 10px;
  }

  .feature-itemm {
    max-width: 100%;
  }

  .edit-image img {
    max-width: 100%;
    height: auto;
  }
}




.stock-ticker {
  position: relative;
  font-size: 15px;
  padding-block: 8px;
  overflow: hidden;
  user-select: none;
  max-width: 1100px;
  margin: 0 auto;

  --gap: 20px;
  display: flex;
  gap: var(--gap);

  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

/* Effet de fondu sur les bords */
.stock-ticker::before,
.stock-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px; /* largeur du dégradé */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.stock-ticker::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(238, 241, 245, 1) 0%,
    rgba(238, 241, 245, 0) 100%
  );
}

.stock-ticker::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(238, 241, 245, 1) 0%,
    rgba(238, 241, 245, 0) 100%
  );
}

.stock-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  animation: scroll 60s linear infinite;
}

.stock-ticker:hover ul {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.stock-ticker .company,
.stock-ticker .price {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stock-ticker .company svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.stock-ticker .price {
  margin-inline: 4px;
}

.stock-ticker .plus .change,
.stock-ticker .plus::before {
  color: #089981;
}

.stock-ticker .minus .change,
.stock-ticker .minus::before {
  color: #f23645;
}

.stock-ticker li {
  margin-right: var(--gap);
}


.persona-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 20px;
  padding: 0 20px;
}

.persona-item {
  text-align: center;
  max-width: 300px;
  flex: 1 1 250px;
}

.persona-item a {
  color: var(--color-secondary);
  text-decoration: none;
}

.persona-image {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 16px;
}

.persona-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
}

.persona-cta {
  display: flex;
  justify-content: center;
  margin: 60px auto 0;
  width: auto;
  max-width: fit-content;
}




.more-test-container {
  max-width: 1100px;
  margin: 0 auto;
}


.more-test-text p {
    line-height: 1.5;
    margin-top: 0;
    font-size: var(--font-size-lg)
}

.more-test-text h3 {
  color: var(--color-secondary);
  font-size: var(--font-size-xl);
  margin-bottom: 10px;
  margin-top: 0;
}

.more-test-text h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: 10px;
  margin-top: 0;
}

.marquee-text {
  overflow: clip;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

.marquee-text-track {
  display: flex;
  padding-left: 1rem;
  gap: 1rem;
  width: max-content;
  animation: marquee-move-text var(--speed, 120s) linear infinite var(
      --direction,
      forwards
    );
}

.testimonial-avatar {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--avatar-bg, #d1c4e9);
  color: #333;
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.marquee-text p {
  display: flex;
  align-items: center;
  border: 1px solid rgb(215, 215, 215);
  border-radius: 5px;
  padding: 0.3rem 1rem;
  white-space: nowrap;
  font-size: var(--font-size-sm)
}

.marquee-text-track:hover {
  animation-play-state: paused;
}

.marquee-text-reverse .marquee-text-track {
  animation-direction: reverse;
  margin-top: -1.5rem;
}

@keyframes marquee-move-text {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .more-test-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;  /* Réduit l'espace à gauche et à droite */
  }

  .more-test-text {
    padding-left: 10px;  /* Réduit l'espace à gauche */
    padding-right: 10px; /* Réduit l'espace à droite */
  }

  .marquee-text {
    padding-left: 10px;  /* Réduit l'espace à gauche */
    padding-right: 10px; /* Réduit l'espace à droite */
  }

  /* Ajuste les autres éléments si nécessaire */
  .more-test-text p,
  .more-test-text h1,
  .more-test-text h3 {
    padding-left: 10px;
    padding-right: 10px;
  }

}


.faq-section {
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.section-header {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.section-title {
  font-size: var(--font-size-4xl);
  margin-bottom: 16px;
  color: var(--color-text-primary);
}

.section-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.faq-column {
  flex: 1;
  min-width: 280px;
}

.faq-item {
  margin-bottom: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background-color: white;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--spacing-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-question {
  border-bottom-color: #eee;
}

.faq-question h3 {
  font-size: var(--font-size-lg);
  margin: 0;
  color: var(--color-primary);
  flex: 1;
  transition: color var(--transition-normal);
}

.faq-item:hover .faq-question h3 {
  color: var(--color-secondary);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: var(--spacing-md);
  flex-shrink: 0;
}

.faq-icon .icon-bar {
  position: absolute;
  background-color: var(--color-secondary);
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  transition: all var(--transition-normal);
}

.faq-icon .icon-bar:nth-child(2) {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item.active .faq-icon .icon-bar:nth-child(2) {
  transform: translateY(-50%) rotate(0);
}

.faq-answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
  padding: var(--spacing-lg);
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  line-height: 1.6;
}





.bundle-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-2xl) var(--spacing-md);
  font-family: var(--font-family);
  color: var(--color-text-primary);
}

.bundle-section-title {
  text-align: center;
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--spacing-2xl);
  color: var(--color-primary);
}

.bundle-section-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}

.bundle-cards-container {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
}

.bundle-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 280px;
}
.bundle-card-highlighted {
  box-shadow: 0 10px 30px rgba(77, 166, 138, 0.25);
  border: 2px solid var(--color-secondary);
}

.bundle-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background-color: var(--color-secondary);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(77, 166, 138, 0.25);
}

.bundle-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.bundle-price {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
}

.bundle-price-amount {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-primary);
}

.bundle-recommended {
  margin-left: var(--spacing-sm);
  color: var(--color-warning);
}

.bundle-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.5;
}

.bundle-subtitle strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.bundle-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg);
}

.bundle-list li {
  position: relative;
  font-size: var(--font-size-md);
  padding-left: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
  line-height: 1;
}

.bundle-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234da68a'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}

.bundle-ideal {
  background-color: rgba(77, 166, 138, 0.08);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: flex-start;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-secondary);
}


.bundle-cta-button {
  margin-top: auto;
  background-color: var(--color-secondary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  width: 100%;
}

.bundle-cta-button:hover {
  background-color: var(--color-secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(77, 166, 138, 0.3);
}

/* Responsive styles */
@media (max-width: 992px) {
  .bundle-section-title {
    font-size: var(--font-size-3xl);
  }
  
  .bundle-cards-container {
    flex-direction: column;
  }

  .bundle-card {
    margin-bottom: var(--spacing-xl);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    box-sizing: border-box;
  }
}

    .contact-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .contact-header h2 {
      font-size: 2.25rem;
      color: var(--color-primary);
      margin-bottom: 0.5rem;
    }
    .contact-header p {
      color: #555;
      font-size: 1rem;
    }
    form.contact-form {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      display: grid;
      gap: 1rem;
    }
    .form-group {
      display: flex;
      flex-direction: column;
    }
    .form-group label {
      margin-bottom: 0.5rem;
      font-weight: 500;
    }
    .form-group input,
    .form-group textarea {
      padding: 0.75rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    .contact-form button {
      background: var(--color-primary);
      color: #fff;
      border: none;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      border-radius: 0.9em;
      cursor: pointer;
      transition: background 0.3s;
      justify-self: start;
    }
    .contact-form button:hover {
      background: var(--color-secondary);
    }
    @media (max-width: 480px) {
      .contact-header h2 {
        font-size: 1.75rem;
      }
      .contact-form {
        padding: 1rem;
      }
      .contact-form button {
        width: 100%;
        text-align: center;
      }
    }







    




  .about-header {
    text-align: center;
    margin-top: 60px;
  }
  .about-header h2 {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
  }
  .about-header p {
    color: #555;
    font-size: 1rem;
    max-width: 800px;
    justify-content: center;
    margin: 0 auto;
  }
    
  .aboutus {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: -200px;
  }

  .images-grid {
    display: grid;
    aspect-ratio: 1 / 1;
    width: 500px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
  }

  .text-grid {
    aspect-ratio: 1 / 1;
    width: 500px;
    height: 500px;
    background-color: #ecf6f5;
    border-radius: 20px;
  }

  .text-grid-content {
    padding: 30px;
  }

  .text-grid-content h4 {
    color: var(--color-secondary);
  }

  .text-grid-content p {
    line-height: 1.5rem;
  }
  .word-list  {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
  }

  .word-list ul {
    padding-left: 0;
    line-height: 1.7rem;
  }

  .word-list li {
    list-style: none;
    display: flex;
    align-items: center;
  }

  .check-icon {
  color: var(--color-secondary);
  margin-right: 8px;
  font-size: 0.9rem;
}

  .cta-about {
  margin-top: 10px;
  background: var(--color-secondary);
  color: white;
  font-family: inherit;
  padding: 0.5em 1.5em;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  box-shadow: inset 0 0 1.2em -0.5em var(--color-secondary);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-about:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
}

  .images-grid > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .image-grid1 {
    grid-column: 1 / 4;
    grid-row: 1 / 7;
  }

  .image-grid2 {
    grid-column: 4 / 7;
    grid-row: 1 / 6;
  }

  .image-grid3 {
    grid-column: 4 / 7;
    grid-row: 6 / 7;
    background-color: rgb(199, 198, 190);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .image-grid3 h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
  }

  .image-grid3 p {
    margin-top: 0;
  }


.missions {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

.missions-grid {
  display: grid;
  width: 500px;
  height: 600px;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}

.mission-grid1,
.mission-grid2 {
  background-color: #ecf6f5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.mission-grid3 {
  background-color: var(--color-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.missions-grid > div {
  width: 100%;
  height: 100%;
}

.mission-img-container {
  width: 500px;
  height: 600px;
  background-color: rgb(224, 224, 224);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.mission-grid-text {
  padding: 0 30px;
}

.mission-grid-text p {
  font-size: var(--font-size-xs);
  line-height: 1.5rem;
}

.mission-grid-text h2 {
  font-size: var(--font-size-md);
  color: var(--color-secondary);
}

.mission-grid-title {
  background-color: white;
  border-radius: 10px;
  display: inline-block;
  padding: 0 10px;
}


.team-section {
      padding: 6rem 2rem;
    }

    .team-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .team-header {
      margin-bottom: 4rem;
    }

    .team-header h2 {
      font-size: 2.5rem;
      color: var(--color-primary);
      margin-bottom: 1rem;
    }

    .team-header p {
      font-size: 1.1rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .team-member {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-10px);
    }

    .member-image {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: white;
    }

    .member-info h3 {
      color: var(--color-primary);
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
    }

    .member-role {
      color: var(--color-secondary);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .member-bio {
      color: #555;
      line-height: 1.6;
    }

    /* Process Section */
    .process-section {
      padding: 6rem 2rem;
    }

    .process-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .process-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .process-header h2 {
      font-size: 2.5rem;
      color: var(--color-primary);
      margin-bottom: 1rem;
    }

    .process-header p {
      font-size: 1.1rem;
      color: #555;
      max-width: 700px;
      margin: 0 auto;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .process-step {
      text-align: center;
      padding: 2rem;
      position: relative;
    }

    .step-number {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--color-secondary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
    }

    .step-title {
      font-size: 1.3rem;
      color: var(--color-primary);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .step-description {
      color: #555;
      line-height: 1.6;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      padding: 6rem 2rem;
      text-align: center;
      color: white;
    }

    .cta-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .cta-section p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-primary, .cta-secondary {
      padding: 1rem 2rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 0.9rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .cta-primary {
      background: white;
      color: var(--color-primary);
    }

    .cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255,255,255,0.3);
    }

    .cta-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .cta-secondary:hover {
      background: white;
      color: var(--color-primary);
      transform: translateY(-2px);
    }

@media (max-width: 768px) {
      .about-header {
        margin-top: 60px;
        padding: 2rem 1rem;
      }

      .about-header h2 {
        font-size: 1.8rem;
      }

      .aboutus,
      .missions {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
      }

      .images-grid,
      .text-grid,
      .missions-grid,
      .mission-img-container {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 400px;
      }

      .images-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
      }

      .image-grid1 {
        grid-column: 1 / 3;
        grid-row: 1 / 4;
      }

      .image-grid2 {
        grid-column: 3 / 5;
        grid-row: 1 / 3;
      }

      .image-grid3 {
        grid-column: 3 / 5;
        grid-row: 3 / 4;
      }

      .text-grid-content {
        padding: 20px;
      }

      .word-list {
        flex-direction: column;
        gap: 10px;
      }

      .team-section,
      .process-section,
      .cta-section {
        padding: 4rem 1rem;
      }

      .team-header h2,
      .process-header h2,
      .cta-section h2 {
        font-size: 2rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .legal-links {
        flex-direction: column;
        align-items: center;
      }
    }

    @media (max-width: 480px) {

      .about-header h2 {
        font-size: 1.5rem;
      }

      .text-grid-content h1 {
        font-size: 1.4rem;
      }

      .team-header h2,
      .process-header h2,
      .cta-section h2 {
        font-size: 1.7rem;
      }

      .images-grid,
      .text-grid {
        max-width: 320px;
      }
    }