body {
    margin: 0;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
}



/* Textes */
h1 {
    font-size: 2.5rem;
    color: #1D1D1F;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: -1.3px;
}
h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #1D1D1F;
    letter-spacing: -1.3px;
}
h3 {
    font-family: 'Kalam', cursive;
    font-size: 30px;
    font-weight: 100;
    color: #F06712;
    margin: 0;
    letter-spacing: -0.7px;
}
h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 14px 0;
    color: #1D1D1F;
    letter-spacing: -0.5px;
}
h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 6px 0;
    color: #1D1D1F;
    letter-spacing: -0.5px;
}
.petit-Titre {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 0px;
    color: #FFFDFD;
}
.step-number {
    color: #F06712!important;
    font-weight: 600;
    margin-bottom: 10px;
}
p {
    font-size: 16px;
    color: #374151;
    margin-top: 8px;
}
.subtext {
    margin-top: 32px;
    color: #374151;
    font-size: 1rem;
}



/* Button */
.buttonnav {
    background: #F06712;
    color: #FFFDFD;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}
.buttonnav:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(240, 103, 18, 0.2);
}
.button {
    background: #F06712;
    color: #FFFDFD;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}
.button:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(240, 103, 18, 0.2);
}



/* Onglet */
.onglet {
    background: transparent;
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    color: #374151;
    flex: 1;
    border-radius: 50px;
    margin: 0;
}
.onglet.active {
    background: #F06712;
    color: #FFFDFD!important;
}
.onglet:hover {
    border-radius: 50px;
    color: #F06712;
    box-shadow: none;
}



/* Barre de navigation */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 56px;
    background: #FFFDFD;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 50px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-item {
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    position: relative;
    transition: color 0.3s;
    font-weight: 600;
}
.nav-item:hover {
    color: #F06712;
}

.nav-item.active, 
.nav-item.active:hover {
    color: #F06712;
}
.nav-item.active::after {
    width: 100%;
    background: #F06712;
}

.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #F06712;
    transition: width 0.3s;
    margin-top: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-item:hover::after {
    width: 100%;
}
.test {
    display: flex;
    justify-content: flex-end;
    width: 168px;
}

/* Burger menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}



/* Héro */

.hero-section {
    background: url('Images/Mascotte/Hero/BackgroundHero.png') no-repeat center/cover;
    text-align: center;
    padding: 32px 24px;
    border-radius: 20px;
    position: relative;
}
.highlight {
    color: #F06712;
}
.hero-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}
.hero-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    transition: transform 0.3s ease;
}
.hero-image img:hover {
    transform: scale(1.05);
}



/* Section Clients */

.clients-section {
    background: #F06712;
    padding: 40px 56px;
    text-align: center;
    color: #FFFDFD;
}
.clients-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 64px;
}
.clients-logos img {
    max-height: 50px;
    object-fit: contain;
}



/* Avantages mascotte : card */

.features-section {
    padding: 32px 56px;
    text-align: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 1280px;
    margin: 32px auto;
}
.feature-card {
    background: #FFF6F0;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    transition: background-color 0.3s, transform 0.3s;
}
.feature-card:hover {
    transform: scale(1.02);
    background: #FDEADF;
}
.feature-card h5 {
    margin: 14px 0;
}
.features-section button {
    margin-top: 32px;
}



/* Les Étapes All */
.step-description {
    flex: 1;
    text-align: left;
    min-width: 300px;
}
.steps-container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px auto;
    background: #FFF6F0;
    padding: 14px 32px;
    border-radius: 16px;
    max-width: 1200px;
}
.content-wrapper-overflow {
    flex: 2;
    width: 100%;
    overflow-x: auto;
    min-width: 530px;
}
.content-wrapper {
    flex: 2;
    width: 100%;
    min-width: 530px;
}
.navigation {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    border-radius: 50px;
    overflow: hidden;
    background: #FFFDFD;
    width: 100%;
}



/* Titre */

.steps-section {
    padding: 56px 56px;
    text-align: center;
    background-color: #fff;
}



/* Étape 1 */

.type-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 20px;
    width: 100%;
}
.type-card {
    text-align: center;
    min-width: 150px;
    max-width: 217px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.type-card:hover {
    transform: translateY(-5px);
}
.type-card img {
    width: 100%;
    height: 160px;
    margin-bottom: 10px;
}
.type-card h4 {
    margin: 0;
    font-weight: 600;
}
.type-card p {
    margin: 0;
    font-size: 14px;
    color: #374151;
}



/* Étapes 2 */

.step2-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}
.step2-image img {
    width: 300px;
}
.step2-details {
    text-align: left;
}



/* Étape 3 */

.step3-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}
.step3-image img{
    width: 300px;
    
}
.step3-details {
    text-align: left;
}
ul {
    padding: 0 14px;
}





/* Étapes 4 */

.emotion-content {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 20px;
    width: 100%;
}
.emotion-card {
    text-align: center;
    min-width: 150px;
    max-width: 217px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.emotion-card:hover {
    transform: translateY(-5px);
}
.emotion-card img {
    width: auto;
    height: 160px;
    margin-bottom: 10px;
}



/* Étapes 5*/

.decor-content {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 20px;
    width: 100%;
}
.decor-card {
    text-align: center;
    min-width: 150px;
    max-width: 217px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.decor-card:hover {
    transform: translateY(-5px);
}
.decor-card img {
    width: auto;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 10px;
}



/* Étapes 6 */
.step-content {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.step-content img {
    max-width: 300px;
    height: 260px;
    transition: transform 0.3s ease-in-out;
}
  


/* Étapes 7*/

.step-examples {
    display: flex;
    gap: 20px;
    flex: 2;
}
.example-card {
    flex: 1;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 24px;
}
.example-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: background-color 0.3s, transform 0.3s;
}
.example-card img:hover {
    transform: scale(1.02);
}
.example-text h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
.download-icon {
    position: absolute;
    bottom: 0px;
    right: 16px;
    cursor: pointer;
    transition: transform 0.3s;
}
.download-icon:hover {
    transform: translateY(-5px);
}



/* Prêts à en discuter */

.discussion-section {
    background: url('Images/Background/bgContact.png') no-repeat center/cover;
    color: #FFFDFD;
    padding: 80px 20px;
    border-radius: 20px;
    max-width: 1200px;
    margin: 0px auto;
}
.discussion-section h1 {
    color: #FFFDFD;
    margin: 0 0 32px 0;
}
.discussion-section p {
    color: #FFFDFD;
    margin-bottom: 32px;
}
.availability {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #FFFDFD;
    margin-top: 40px;
}
.status-indicator {
    width: 12px;
    height: 12px;
    background-color: #11CC2A;
    border-radius: 50%;
    box-shadow: 0 0 10px #11CC2A;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px #00ff00;
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px #00ff00;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px #00ff00;
    }
}



/* Section Témoignages */

.testimonials-section {
    background: url('Images/Background/BG\ témoignages.png') no-repeat center/cover;
    padding: 120px 56px;
    text-align: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 32px auto 0 auto;
}
.testimonial-card {
    background: #FFFDFD;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: left;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.testimonial-client {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-top: 20px;
}
.testimonial-client img {
    height: 24px;
}


/* Tarifs */

.pricing-section {
    padding: 50px 20px;
    background: url('Images/Mascotte/Hero/BackgroundHero.png') no-repeat center/cover;
    background-size: cover;
    background-position: center;
}
.pricing-section h2 {
    text-align: center;
}
.pricing-section h3 {
    text-align: center;
    margin: 0 0 32px 0;
}
.pricing-cards h5 {
    color: #F06712;
}
.pricing-cards h2 {
    margin: 10px 0;
    text-align: left;
}
.separator {
    margin: 20px 0;
    border-top: 0.5px solid #e7e7ea;
  }
.program-title {
    font-weight: bold;
    margin: 10px 0 0 0;
    text-align: left;
    font-size: 1.2em;
}
.btn {
    text-align: center;
    margin-top: auto;
}
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}
.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 300px;
    max-width: 350px;
    min-height: 550px;
    transition: background-color 0.3s, transform 0.3s;
} 
.card:hover {
    transform: translateY(-5px);
}
.pricing-cards ul {
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}
.pricing-cards ul li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.pricing-cards ul li img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}
  


/* Section FAQ */
.faq-section {
    padding: 56px 56px;
    text-align: center;
}
.faq-container {
    max-width: 800px;
    margin: 32px auto 0 auto;
}
.faq-item {
    background: #FFF6F0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-align: left;
    position: relative;
}
.faq-item:hover {
    transform: scale(1.01);
}
.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    font-size: 16px;
    color: #374151!important;
    display: none;
    margin-top: 10px;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}



/* Section Contact FAQ */
.contact-section {
    background: url('Images/Background/bgContact.png') no-repeat center/cover;
    padding: 40px 24px;
    color: #FFFDFD;
    text-align: center;
    border-radius: 12px;
    max-width: 750px;
    margin: 20px auto;
}
.contact-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0px 10px;
    color: #FFFDFD;
}
.contact-section p {
    color: #FFFDFD;
    margin: 20px 0;
}
.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 32px;
}
.contact-email a {
    text-decoration: none;
    color: #FFFDFD;
}


/* Section Présentation */
.presentation-section {
    background: url('Images/Background/Bg\ Qui\ suis\ je.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 56px;
    gap: 40px;
    margin: 0 auto;
}
.presentation-text h2 {
    margin: 0px;
}
.presentation-text h3 {
    margin: 0px;
}
.presentation-text p {
    margin: 32px 0;
}
.presentation-text {
    max-width: 600px;
}
.presentation-links {
    display: flex;
    gap: 16px;
}
.presentation-link {
    background: #FFFDFD;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #000;
}
.presentation-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(240, 103, 18, 0.1);
}
.presentation-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.presentation-image img {
    max-width: 300px;
    border-radius: 20px;
}



/* Footer */

.footer {
    background-color: #1D1D1F;
    color: #FFFDFD;
    padding: 16px 56px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo img{
    height: 50px;
}
.footer-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.footer-link {
    color: #FFFDFD;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover {
    color: #F06712;
}
.footer-separator {
    color: #7C7C87;
}
.footer-content p {
    color: #FFFDFD;
}



/* Mentions Légales */
.legal-content2 {
    padding: 56px 0;
    background: url('Images/Background/Bgmention.png') no-repeat center/cover;
}
.legal-content2 h2 {
    color: #F06712;
    text-align: center;
}
.ML {
    text-align: center;
}
.MLarge {
    margin-bottom: 40px;
}
.legal-content h4 {
    color: #1D1D1F;
}
.legal-content a {
    text-decoration: none;
    color:#F06712;
}
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}


/* CGV */









/* PAGE LOGO */


/* Étape 1 */


.logotype-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 20px;
    width: 100%;
}
.logotype-card {
    text-align: center;
    min-width: 150px;
    max-width: 217px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.logotype-card:hover {
    transform: translateY(-5px);
}
.logotype-card img {
    width: 100%;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.logotype-card h4 {
    margin: 0;
    font-weight: 600;
}
.logotype-card p {
    margin: 0;
    font-size: 14px;
    color: #374151;
}


/* Étape 3 */

.logotype3-card {
    text-align: center;
    min-width: 150px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.logotype3-card:hover {
    transform: translateY(-5px);
}
.logotype3-card img {
    margin-bottom: 10px;
    height: 220px;
}

/* Etape 6 */
/* Étapes 6 */
.logostep6-content {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.logostep6-content img {
    max-width: 300px;
    height: 260px;
    transition: transform 0.3s ease-in-out;
}








/* Page mascotte savvy */
.mascotteS1 {
    background: url('Images/Branding/Mascotte/Savvy/banniereSavvy.png') no-repeat center/cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 56px 80px;
    height: 300px;
  }
  .mascotteS1 div{
    width: auto;
  }
  
  .mascotteS1 h5 {
    color: #1D1D1F;
  }
  .mascotteS1 h1 {
    margin: 0 0 16px 0;
    color: #EC2A3A;
  }
  
  .mascotteBanniereTexte {
    max-width: 450px!important;
  }
  
  .right img {
    width: auto;
    height: 300px;
    object-fit: cover;
  }
  







/* PAGE SITE */


.hero-imageSite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}
.hero-imageSite img {
    width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.hero-imageSite img:hover {
    transform: scale(1.03);
}


/* Étape 1 */


.sitestep1-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 20px;
    width: 100%;
    border-radius: 0px;
}
.site1-card {
    text-align: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.site1-card img {
    width: auto;
    height: 280px;
    margin-bottom: 10px;
}


/* Étape 2 */

.site2type-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 20px;
    width: 100%;
    border-radius: 0px;
}
.site2-card {
    text-align: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.site2-card video {
    border-radius: 8px;
    width: auto;
    height: 280px;
    margin-bottom: 10px;
}



/* Étape 4 */

.site4-content {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 20px;
    width: 100%;
    border-radius: 0px;
}

.site4-card {
    text-align: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.site4-card img {
    width: auto;
    height: 280px;
    margin-bottom: 10px;
}

/* Étape 6 */
.site6-content {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 20px;
    width: 100%;
    border-radius: 0px;
}
.site6-card {
    text-align: center;
    flex-shrink: 0;
}
.site6-card img {
    width: auto;
    height: 220px;
    margin-bottom: 10px;
}

/* Étape 7 */
.site7-content {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding-bottom: 20px;
    width: 100%;
    border-radius: 0px;
}

.site7-card {
    text-align: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.site7-card img {
    width: auto;
    height: 220px;
    margin-bottom: 10px;
    border-radius: 8px;
}







/* Responsive */

@media (max-width: 768px) {

    /* Texte */
    h1 {
        font-size: 2.2rem;
        line-height: 1.2em;;
    }


    /* Barre de navigation */
    .navbar {
        padding: 14px 24px;
        z-index: 1000;
        top: 0px;
    }
    
    .nav-links.active{
        display: flex;
    }
    .nav-links {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 24px;
        top: 64px;
        position: absolute;
        gap: 44px;
        background: #FFFDFD;
        width: auto;
        z-index: 500;
        margin: 0px;
        left: 0;
        min-width: 330px;
    }


    /* Héro */
    .hero-section {
        margin-top: 24px!important;
    }
    .hero-images {
        flex-direction: row;
    }
   
    
    /* Section Clients */
    .clients-logos {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .clients-section {
        padding: 32px 24px;
    }

    /* Avantages mascotte card */
    .features-grid {
        grid-template-columns: 1fr;
    }
    .features-section {
        padding: 24px 24px;
    }


    /* Les Étapes All*/
    .steps-container {
        flex-direction: column;
        align-items: stretch;
    }
    .content-wrapper {
        min-width: 100px;
    }
    .content-wrapper-overflow {
        min-width: 100px;
    }



    /* Menu étape scroll */
    .navigation {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start; /* Aligné à gauche */
    }
    
    .onglet {
        padding: 12px 16px;
    }


    /* Étapes 1 */
    .type-content {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        gap: 8px;
        justify-content: left;
    }



     /* Étapes 2 */
     .step2-content {
        flex-direction: column;
    }
     

    /* Étapes 3 */
    .storytelling-container {
        flex-direction: column;
    }
    .storytelling-content {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        gap: 8px;
    }
    .step3-section {
        flex-direction: column;
    }
    .step3-content {
        flex-direction: column;
    }
    .step3-tabs {
        flex-direction: column;
    }
    

    /* Étapes 4 */
    .emotion-content {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        gap: 8px;
    }
    

    /* Étapes 5 */
    .decor-content {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        gap: 8px;
    }


    /* Étapes 6 */
    .step6-section {
        padding: 56px 24px;
    }


    /* Étapes 7 */
    .steps-section {
        padding: 56px 24px;
    }
    .step-examples {
        flex-direction: column;
    }


    /* Prêt à en discuter */
    .discussion-section {
        padding: 56px 20px;
    }
    .discussion-section H1 {
        font-size: 1.7rem;
    }

    


    /* Section Témoignages */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-section {
        padding: 56px 24px;
    }


    /* Tarifs */
    .pricing-cards {
        flex-direction: column;
      }


    /* Section FAQ */
    .faq-section {
        padding: 56px 24px;
        text-align: center;
    }


    /* Section Présentation */
    .presentation-section {
        flex-direction: column;
        padding: 56px 24px;
    }
    .presentation-text, .presentation-image {
        max-width: 100%;
    }
    .presentation-image img {
        max-width: 200px;
        border-radius: 20px;
    }


    /* Footer */
    .footer{
        padding: 24px 24px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .footer-links {
        position: static;
        transform: none;
    }



    /* LOGO */
    /* Etape 3 */
    .logotype3-card img {
        margin-bottom: 10px;
        height: 110px;
    }






    /* Site */
    .site1-card img {
        width: auto;
        height: 140px;
        margin-bottom: 10px;
    }
    .site2-card img {
        width: auto;
        height: 140px;
        margin-bottom: 10px;
    }

    /* Étape 3 */ 
    .site4-card img{
        height: 140px;
    }

    /* Étape 4 */
    .site2-card video {
        height: 140px;
    }

    /* Etape 6 */
    
    .site6-content {
        justify-content: left;
        gap: 14px;
    }
    .site6-content img {
        height: 140px;
    }
    /* Étape 7 */
.site7-content {
    justify-content: left;
}
.site7-content img{
    height: 160px;
}






    /* Branding Mascotte Savvy */
    .mascotteS1 {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        height: auto;
      }
    
      .right img {
        width: 100%;
        height: auto;
        max-width: 300px;
      }
    

}

