body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
  background: #ffffff;
}

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

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.2em;
}

.title {
  font-size: 1em;
}

.btn {
  background-color: #0047ff;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.highlight {
  color: #2563EB;
  font-weight: bold;
}

.hero p {
  font-size: 1.1em;
  margin: 10px 0 20px;
}

.btn-primary {
  background-color: #0047ff;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}

/* Projects */
.projects {
  background: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
}

.projects-header .tag {
  display: inline-block;
  background: red;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: bold;
  transform: rotate(-10deg);
  margin-bottom: 10px;
}

.section-title .tag {
  display: inline-block;
  background: red;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: bold;
  transform: rotate(-10deg);
  margin-bottom: 10px;
}


.title-header .tag {
  display: inline-block;
  background: #2563EB;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  transform: rotate(-5deg);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.title-process {
  display: inline-block;
  background: #2563EB;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  transform: rotate(8deg);
  font-size: 1.5rem;
  margin-bottom: 10px;
}


.title-yellow {
  display: inline-block;
  background: #ffd000;
  color: rgb(255, 255, 255);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  transform: rotate(5deg);
  font-size: 1.5rem;
  margin-bottom: 10px;
  -webkit-text-stroke: 0.1px rgb(180, 180, 180);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.projects-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Footer note */
.footer-note {
  text-align: center;
  padding: 40px 20px;
  font-size: 1.2em;
  font-weight: bold;
}


/*
                *************************************************
                *************************************************
                *************   SECTIONS PRICE    ***************
                *************************************************
                *************************************************
*/


.pricing {
  color: #fff;
  /* padding: 80px 0; */
  overflow: hidden;
}

.pricing-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  background: black;
  padding: 0 20px;
  gap: 40px;
}

/* Bloc gauche : texte */
.pricing-text {
  flex: 1 1 300px;
  min-width: 250px;
}

.pricing-text h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.pricing-text p {
  font-size: 1.1em;
  color: #ccc;
}

/* Bloc droite : cartes */
.pricing-cards {
  display: flex;
  flex: 2 1 600px;
  gap: 20px;
  position: relative;
}

.pricing-card {
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 350px;
  min-height: 400px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(30px); /* effet de débord */
}

/* Carte premium */
.pricing-header {
  background: linear-gradient(to bottom, #0047ff, #005eff);
  color: white;
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  font-size: 1.2em;
  display: flex;
  gap: 8px;
}

.plan {
  opacity: 0.7;
}

.premium {
  font-weight: bold;
}

.pricing-features {
  list-style: none;
  padding: 15px;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95em;
}

.pricing-features li {
  padding-left: 8px;
  margin-bottom: 5px;
}

/* Deuxième bloc vide */
.placeholder {
  background-color: #d9d9d9;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
    transform: none;
  }

  .pricing-card {
    max-width: 90%;
    transform: none;
  }

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



/*
                *************************************************
                *************************************************
                *************   SECTIONS Process    ***************
                *************************************************
                *************************************************
*/


.process {
  background: #fff;
  padding: 20px 20px;
}

.process-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Colonne gauche */
.column-left {
  flex: 1 1 300px;
  min-width: 250px;
}

.column-left h2 {
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.4;
}

/* Colonne droite */
.column-right {
  flex: 2 1 600px;
  padding-left: 40px;
  border-left: 4px solid #000;
  position: relative;
}

/* Étapes */
.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.step-left {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  position: absolute;
  left: -55px;
  top: 0;
}

.step-content h3 {
  font-size: 1.1em;
  margin: 0 0 6px;
  font-weight: bold;
}

.step-content p {
  margin: 0;
  font-size: 0.95em;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .process-wrapper {
    flex-direction: column;
  }

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

  .column-right {
    padding-left: 30px;
    border-left: 3px solid #000;
  }

  .step-left {
    left: -40px;
  }
}




/*
                *************************************************
                *************************************************
                *************   SECTION POURQUOI ON NOUS AIME   
                 ***************
                *************************************************
                *************************************************
*/
.satisfaction-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    overflow: hidden; /* Évite les débordements */
}

.section-title {
    font-size: clamp(1.7rem, 2vw, 3rem);
    line-height: 1.2;
    text-align: center;
    margin: 0 0 40px;
    font-weight: bold;
    color: #333;
    position: relative;
    z-index: 10;
}

/* Conteneur scroll horizontal */
.features-container {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px; /* Padding pour le snap */
    overscroll-behavior-x: contain;
    padding: 0 16px; /* Padding interne au lieu des pseudo-éléments */
    margin: 0 -16px; /* Compensation pour garder l'alignement */
}

/* Cartes */
.feature-card {
    flex: 0 0 clamp(280px, 85vw, 340px); /* Taille responsive optimisée */
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px 15px;
    height: auto;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.heart-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.clock-icon {
    background: linear-gradient(135deg, #ffd93d, #ff9500);
    color: white;
}

.chat-icon {
    background: linear-gradient(135deg, #ff9500, #ff6b00);
    color: white;
}

.feature-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: bold;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.25;
}

.feature-description {
    color: #454545;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    gap: 8px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin: 0;
}

/* Scrollbar discrète */
.features-container::-webkit-scrollbar {
    height: 6px;
}

.features-container::-webkit-scrollbar-track {
    background: transparent;
}

.features-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.features-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Firefox */
.features-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

/* Responsive - Desktop */
@media (min-width: 769px) {
    .features-container {
        justify-content: center;
        overflow-x: visible; /* Pas de scroll sur desktop */
        margin: 0;
        padding: 0;
    }
    
    .feature-card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: 340px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .satisfaction-section {
        padding: 0;
        margin: 0;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .features-container {
        scroll-padding-left: 20px;
        padding: 0 20px;
        margin: 0 -20px;
        gap: 15px;
    }
    
    .feature-card {
        flex: 0 0 clamp(260px, 80vw, 300px);
        padding: 25px 15px;
        min-height: 180px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .features-container {
        padding: 0 15px;
        margin: 0 -15px;
        gap: 12px;
    }
    
    .feature-card {
        flex: 0 0 clamp(240px, 85vw, 280px);
        padding: 20px 12px;
    }
}

 /*
                *************************************************
                *************************************************
                ******** SECTION MARQUEE SCROLL INFINI **********
                *************************************************
                *************************************************
*/

  .scroll-container {
            width: 100%;
            margin-top: 10%;
            /* margin-bottom: 20%; */
            height: 70px;
            background: rgb(0, 0, 0);
            /* backdrop-filter: blur(10px); */
            /* border: 1px solid rgba(0, 0, 0, 0.2); */
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            border-radius: 0px;
            /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
        }

        .scroll-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
            will-change: transform;
            animation: infiniteScroll 20s linear infinite;
        }

        .scroll-text {
            font-size: 2rem;
            font-weight: bold;
            color: white;
            /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
            margin-right: 50px;
            background: linear-gradient(45deg, #fff, #f0f0f0);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: shimmer 3s ease-in-out infinite;
        }

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

        @keyframes shimmer {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .scroll-text {
                font-size: 1.8rem;
                margin-right: 30px;
            }
            
            .scroll-container {
                height: 80px;
                /* margin: 0 20px; */
            }
        }

        @media (max-width: 480px) {
            .scroll-text {
                font-size: 1.4rem;
                margin-right: 20px;
            }
            
            .scroll-container {
                height: 60px;
            }
        }

        /* Contrôles de vitesse */
        .controls {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .speed-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .speed-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .speed-btn.active {
            background: rgba(255, 255, 255, 0.4);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }

        /* Variantes de vitesse */
        .speed-slow {
            animation-duration: 35s !important;
        }

        .speed-normal {
            animation-duration: 20s !important;
        }

        .speed-fast {
            animation-duration: 10s !important;
        }

        .speed-ultra {
            animation-duration: 5s !important;
        }



 /*
                *************************************************
                *************************************************
                ****** SECTION BLOC SERVICES PERSONNALISER ******
                *************************************************
                *************************************************
*/


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

        .title-yellow {
            display: inline-block;
            background: #ffd000;
            color: rgb(255, 255, 255);
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: bold;
            transform: rotate(5deg);
            font-size: 1.5rem;
            margin-bottom: 10px;
            -webkit-text-stroke: 0.1px rgb(180, 180, 180);
        }

        /* Section Services */
        .services-section {
            position: relative;
            padding: 60px 20px;
            overflow: hidden;
            background: white;
        }

        /* Images de fond */
        .services-bg-left {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 45%;
            max-width: 400px;
            opacity: 0.1;
            z-index: 1;
        }

        .services-bg-right {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 35%;
            max-width: 300px;
            opacity: 0.1;
            z-index: 1;
        }

        /* Contenu principal */
        .services-content {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            margin: 0 auto;
        }

        .services-title {
            color: black;
            text-align: center;
            font-size: 1.7em;
            margin-bottom: 10px;
        }

        .services-subtitle {
            text-align: center;
            margin-bottom: 40px;
            font-weight: bold;
            color: #444;
        }

        /* Carousel Wrapper */
        .carousels-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            gap: 20px;
            padding: 20px 0;
        }

        .carousels {
            width: 100%;
            max-width: 680px;
            overflow-x: auto;
            overflow-y: hidden;
            position: relative;
            border-radius: 10px;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        /* Conteneur des boutons */
        .carousel-controls {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
        }

        .carousels::-webkit-scrollbar {
            height: 0px;
        }

        .carousels::-webkit-scrollbar-track {
            background: rgba(0,0,0,0.1);
            border-radius: 3px;
        }

        .carousels::-webkit-scrollbar-thumb {
            background: rgba(0,0,0,0.3);
            border-radius: 3px;
        }

        .carousels::-webkit-scrollbar-thumb:hover {
            background: rgba(0,0,0,0.5);
        }

        .carousels-track {
            display: flex;
            gap: 15px;
            transition: none;
        }

        .box {
            min-width: 200px;
            height: 180px;
            background-color: #007BFF;
            color: white;
            font-weight: bold;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            font-family: sans-serif;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            flex: 0 0 auto;
            transition: transform 0.3s ease;
            scroll-snap-align: start;
        }

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

        .badge {
            background-color: rgba(0,0,0,0.3);
            color: white;
            font-size: 13px;
            font-weight: bold;
            padding: 4px 10px;
            border-radius: 10px;
            margin-bottom: 5px;
        }

        .subtitle {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .icon {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 15px;
            align-self: flex-end;
            margin-top: auto;
        }

        .carousels-btn {
            background-color: rgba(0, 0, 0, 0.8);
            border: none;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .carousels-btn:hover {
            background-color: rgba(0, 0, 0, 1);
            transform: scale(1.1);
        }

        .carousels-btn:active {
            transform: scale(0.95);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services-bg-left,
            .services-bg-right {
                display: none;
            }

            .carousels-wrapper {
                gap: 10px;
                padding: 0 10px;
            }

            .carousels {
                max-width: 100%;
            }

            .box {
                min-width: 180px;
                height: 160px;
                padding: 15px;
            }

            .carousels-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .services-title {
                font-size: 1.4em;
            }

            .services-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .carousels-wrapper {
                gap: 20px;
            }

            .carousel-controls {
                order: 2; /* Force les boutons en bas */
            }

            .carousels {
                order: 1; /* Force le carousel en haut */
            }

            .box {
                min-width: 160px;
                height: 150px;
            }
        }


 /*
                *************************************************
                *************************************************
                *********** SECTION TOOLS UTILISER **************
                *************************************************
                *************************************************
*/


       .tools-section {
            text-align: center;
            padding: 20px 0px 40px 0px;
            background-color: #ffffff;
            overflow: hidden;
        }

        .title-header-tag {
            background-color: #3b82f6;
            color: white;
            padding: 2px 8px;
            border-radius: 5px;
        }

        .subtitle {
            font-size: 14px;
            margin-bottom: 30px;
            /* margin-top: -15px; */
            font-weight: bold;
            width: 90%;
            margin-left: 8px;
        }

        .tools-carousel {
            overflow: hidden;
            background-color: #E5F4FF;
            padding-top: 15px;
            padding-bottom: 15px;
            width: 100%;
            position: relative;
            /* mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent); */
            /* -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent); */
            border: solid 1px black;
        }

        .tools-track {
            display: flex;
            gap: 30px;
            animation: scroll-infinite 20s linear infinite;
            width: max-content;
        }

        /* Animation fluide sans interruption */
        @keyframes scroll-infinite {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100% / 2));
            }
        }

        .tool {
            width: 90px;
            flex-shrink: 0;
            text-align: center;
        }

        .tool-title {
            font-size: 13px;
            margin-bottom: 6px;
            font-weight: bold;
        }

        .tool img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            margin-bottom: 6px;
        }

        .tool-tag {
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 8px;
            display: inline-block;
            color: white;
        }

        .tool-tag.design {
            background-color: #60A5FA;
        }

        .tool-tag.developpement {
            background-color: #2563EB;
        }

        .tool-tag.seo {
            background-color: #1D4ED8;
        }

        /* Pause au survol pour une meilleure expérience utilisateur */
        .tools-carousel:hover .tools-track {
            animation-play-state: running;
        }




 /*
                *************************************************
                *************************************************
                ******** SECTION FAQ PERSONNALISER **********
                *************************************************
                *************************************************
*/

.faq-section {
  background-color: #daf0ff;
  padding: 35px 30px;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 100px;
  border-radius: 10px;
  border: 1px solid #c2d9ef;
  font-family: sans-serif;
}

.faq-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.title-faq-tag {
  background-color: #EB2525;
  color: white;
  padding: 2px 8px;
  border-radius: 5px;
  margin-right: 5px;
  transform: rotate(15deg);
   display: inline-block;
  font-weight: bold;
  transform: rotate(9deg);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.faq-icon {
  font-size: 18px;
  vertical-align: middle;
}

.faq-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 12px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '⌄';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.faq-item.active .faq-question::after {
  content: '⌃';
}

.faq-answer {
    background-color: #ffffff;
    color: black;
    border: 1.6px solid #999999;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
    display: none;
    font-size: 12px;
    font-weight: bold;
}

.faq-item.active .faq-answer {
  display: block;
}


 /*
                *************************************************
                *************************************************
                ******** SECTION FOOTER PERSONNALISER **********
                *************************************************
                *************************************************
*/




.footer_perso {
    background-color: black;
    color: white;
    padding: 20px;
    font-weight: bold;
    text-align: center;
    /* -webkit-text-stroke: 0.5px white; */
}