/* Reset et styles de base */
:root {
    --orange: #ffbd4a;
    --gris: #dddddd;
    --gris-fonce: #a6a6a6;
    --vert: #35b729;
    --rouge-vif: #ff5c5c;
    --bleu-royal: #5271ff;
    --rouge: #ce1126;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-weight: bold; */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header Styles */
.header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 130px;
    /* height: 40px; */
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Navigation active state */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
    color: black !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #FFB800;
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #FFB800;
    font-weight: 600;
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.logo-tagline {
    font-size: 20px;
    color: var(--gris-fonce);
    line-height: 1;
}

.navigation {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--gris-fonce);
    font-size: 19px;
    /* font-weight: 400; */
    transition: color 0.3s ease;
}

.nav-link.active {
    color: #FFD93D;
    font-weight: 700;
    border-bottom: 2.5px solid #FFD93D;
    background: none;
    /* Ajoutez d'autres styles si besoin */
}

.nav-link:hover {
    color: #333;
}

.btn-commencer-nav {
    background-color: #FFD93D;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-commencer-nav:hover {
    background-color: #FFC107;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    /* max-width: 600px; */
    width: 60%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 30px;
    color: var(--gris-fonce);
    margin-bottom: 90px;
    line-height: 1.5;
}

.highlight {
    color: #FFD93D;
    font-weight: 600;
}

.btn-commencer-main {
    background-color: #333;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.btn-commencer-main:hover {
    background-color: #222;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gris-fonce);
}

.feature-text h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--gris-fonce);
    line-height: 1.3;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.illustration-element {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.illustration-element.books {
    top: 10%;
    left: 20%;
    animation-delay: -2s;
}

.illustration-element.person {
    top: 30%;
    right: 25%;
    animation-delay: -1s;
}

.illustration-element.laptop {
    bottom: 20%;
    left: 30%;
    animation-delay: 0s;
}

.illustration-element.plant {
    top: 50%;
    right: 10%;
    animation-delay: -3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Banner Section */
.banner-section {
    background-color: #FFD93D;
    padding: 60px 0;
    text-align: center;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    /* max-width: 800px; */
    margin: 0 auto;
    line-height: 1.2;
}

/* Notre offre Section */
.offre-section {
    background-color: white;
    padding: 100px 0;
}

.section-title {
    margin-top: 30px;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.2;
    /* text-align: center; */
}

.offre-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.courtage-brand {
    margin-bottom: 40px;
}

.browser-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background-color: var(--rouge-vif);
}

.dot.yellow {
    background-color: var(--orange);
}

.dot.green {
    background-color: var(--vert);
}

.app-name {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--orange);
    transition: color 0.3s ease;
    margin-bottom: 12px;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

.app-description {
    font-size: 16px;
    color: var(--gris-fonce);
    line-height: 1.5;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-point .feature-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-point .feature-icon.red {
    background-color: var(--rouge-vif);
}

.feature-point .feature-icon.yellow {
    background-color: var(--orange);
}

.feature-point .feature-icon.green {
    background-color: var(--vert);
}

.feature-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* App Mockup */
.app-mockup {
    perspective: 1000px;
}

.mockup-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.mockup-window:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: #f8f9fa;
    padding: 16px 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-nav {
    display: flex;
    gap: 24px;
}

.nav-item {
    font-size: 14px;
    color: var(--gris-fonce);
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item.active {
    background-color: #333;
    color: white;
    font-weight: 600;
}

.mockup-content {
    padding: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: var(--gris-fonce);
    margin-bottom: 8px;
    line-height: 1.3;
}

.stat-detail {
    font-size: 10px;
    color: #999;
    line-height: 1.2;
}

.charts-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.chart-container h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 600;
}

.chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.bar {
    flex: 1;
    min-height: 20px;
    border-radius: 4px 4px 0 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.bar:hover {
    transform: scaleY(1.1);
    transform-origin: bottom;
}

/* Section Créatifs */
.creatifs-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.creatifs-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Interface Mockup - Partie gauche */
.interface-mockup {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
}

.interface-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.module-item {
    background: white;
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 100px;
}

.module-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #FFD93D;
}

.module-item span {
    display: block;
}

/* Photos des utilisateurs */
.user-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.user-photo {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: userFloat 6s ease-in-out infinite;
}

.user-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-photo.user-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(45deg, #FF6B6B, #FFD93D);
}

.user-photo.user-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: -2s;
    background: linear-gradient(45deg, #6BCF7F, #4ECDC4);
}

.user-photo.user-3 {
    top: 25%;
    right: 15%;
    animation-delay: -4s;
    background: linear-gradient(45deg, #6B46C1, #EC4899);
}

@keyframes userFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(2deg);
    }

    66% {
        transform: translateY(-4px) rotate(-2deg);
    }
}

/* Lignes de connexion */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.connection-svg path {
    animation: lineFlow 8s ease-in-out infinite;
}

@keyframes lineFlow {

    0%,
    100% {
        stroke-dasharray: 0, 100;
    }

    50% {
        stroke-dasharray: 50, 100;
    }
}

/* Partie droite - Contenu textuel */
.creatifs-right {
    max-width: 500px;
}

.creatifs-right .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: left;
}

/* Logo COURTAGE coloré */
.courtage-brand-colorful {
    margin-bottom: 30px;
}

.brand-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.brand-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.brand-dots .dot.red {
    background-color: #FF6B6B;
}

.brand-dots .dot.yellow {
    background-color: #FFD93D;
}

.brand-dots .dot.green {
    background-color: #6BCF7F;
}

.brand-name-colorful {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.brand-name-colorful .orange {
    color: var(--orange);
}

.brand-name-colorful .green {
    color: var(--vert);
}

.brand-name-colorful .red {
    color: var(--rouge-vif);
}

.brand-name-colorful .pink {
    color: #F06292;
}

.brand-name-colorful .yellow {
    color: #FFD93D;
}

.brand-name-colorful .blue {
    color: var(--bleu-royal);
}

.brand-name-colorful .purple {
    color: #9C27B0;
}

/* Description détaillée */
.app-description-detailed {
    font-size: 16px;
    color: var(--gris-fonce);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Fonctionnalités avec icônes */
.feature-highlights {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 120px;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon-box.tableau {
    /* background: rgba(153, 153, 153, 0.1); */
    color: #999;
}

.feature-icon-box.archives {
    /* background: rgba(51, 51, 51, 0.1); */
    color: #333;
}

.feature-icon-box.fluidite {
    /* background: rgba(51, 51, 51, 0.9); */
    color: white;
}

.feature-highlight:hover .feature-icon-box {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.feature-desc {
    font-size: 12px;
    color: var(--gris-fonce);
    line-height: 1.2;
}

/* Animation pour toute la section */
@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.creatifs-section {
    animation: sectionFadeIn 1s ease-out;
}

/* Responsive pour la section créatifs */
@media (max-width: 1024px) {
    .creatifs-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .interface-mockup {
        height: 400px;
        margin: 0 auto;
        max-width: 600px;
    }

    .creatifs-right {
        text-align: center;
        max-width: none;
    }

    .creatifs-right .section-title {
        /* text-align: center; */
    }
}

@media (max-width: 768px) {
    .interface-grid {
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .module-item {
        padding: 15px 10px;
        font-size: 12px;
        min-height: 80px;
    }

    .user-photo {
        width: 60px;
        height: 60px;
    }

    .brand-name-colorful {
        font-size: 2.5rem;
    }

    .feature-highlights {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .interface-mockup {
        height: 300px;
    }

    .interface-grid {
        /* grid-template-columns: 1fr 1fr; */
        grid-template-rows: repeat(5, 1fr);
    }

    .brand-name-colorful {
        font-size: 2rem;
    }
}

/* Section Clients - Carrousel */
.clients-section {
    background-color: white;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.clients-subtitle {
    font-size: 1.1rem;
    color: var(--gris-fonce);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Styles de la section clients */

/* Carrousel */
.clients-carousel {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

/* Cartes clients */
.client-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 20px 0;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.client-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.client-header {
    padding: 20px;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.client-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.client-card:hover .client-header::before {
    left: 100%;
}

.client-header.orange {
    background: linear-gradient(135deg, #FF8A00, #FFB84D);
}

.client-header.pink {
    background: linear-gradient(135deg, #E91E63, #F48FB1);
}

.client-header.green {
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.client-header.blue {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

.client-header.purple {
    background: linear-gradient(135deg, #9C27B0, #CE93D8);
}

.client-header.teal {
    background: linear-gradient(135deg, #009688, #4DB6AC);
}

.client-header h3 {
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.client-content {
    padding: 30px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.client-card:hover .client-avatar {
    transform: scale(1.1);
}

.client-info {
    text-align: center;
}

.client-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
}

.client-info p {
    color: var(--gris-fonce);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.client-rating {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Témoignages */
.client-testimonial {
    padding: 20px;
    background: #f8f9fa;
    margin: 0 20px 20px;
    border-radius: 12px;
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.client-testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 60px;
    color: #e0e0e0;
    font-family: serif;
    line-height: 1;
}

.client-testimonial p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator:hover {
    background: #bbb;
    transform: scale(1.2);
}

.indicator.active {
    background: #333;
    transform: scale(1.3);
}

.indicator.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #333;
    border-radius: 50%;
    opacity: 0.3;
}

/* Contrôles de lecture */
.carousel-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.play-pause-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.play-pause-btn:hover {
    background: rgba(51, 51, 51, 0.9);
    color: white;
    transform: scale(1.1);
}

/* Animations du carrousel */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.carousel-slide.entering {
    animation: slideIn 0.6s ease-out;
}

/* Effet de brillance sur les cartes */
@keyframes shine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }

    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-15deg);
    transition: left 0.6s;
}

.client-card:hover::before {
    left: 100%;
}

/* Responsive du carrousel */
@media (max-width: 1024px) {
    .client-card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .clients-carousel-container {
        padding: 0 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 5px;
    }

    .carousel-btn-next {
        right: 5px;
    }

    .client-card {
        min-height: 350px;
    }

    .client-header h3 {
        font-size: 1.1rem;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
    }

    .client-testimonial {
        margin: 0 10px 15px;
        padding: 15px;
    }

    .client-testimonial p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content > div > img{
        height: 31vh;
    }

    .clients-section {
        padding: 60px 0;
    }

    .clients-carousel {
        padding: 15px;
    }

    .client-card {
        min-height: 320px;
    }

    .client-content {
        padding: 20px 15px 15px;
    }

    .client-testimonial {
        margin: 0 5px 10px;
        padding: 12px;
    }

    .carousel-indicators {
        margin-top: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Section Tarifs */
.tarifs-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.tarifs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tarifs-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tarifs-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 0;
}

.tarifs-description {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tarifs-description p {
    font-size: 25px;
    color: var(--gris-fonce);
    line-height: 1.5;
    margin: 0;
}

.btn-voir-plus {
    background-color: #333;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-voir-plus:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tarifs-right {
    display: flex;
    justify-content: flex-end;
}

.pricing-cards-container {
    display: flex;
    align-items: flex-start;
    gap: 0;
    /* perspective: 1000px; */
    position: relative;
    width: fit-content;
}

.pricing-card {
    position: relative;
    width: 440px;
    min-height: 480px;
    border-radius: 24px;
    /* padding: 40px 30px; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    background: #FFD93D;
    transform: scale(1.08) translateZ(30px) translateX(-10px);
    z-index: 2;
    margin-right: -100px;
}

.pricing-card.standard {
    background: #E5E5E5;
    color: var(--gris-fonce);
    transform: scale(0.9) translateZ(-30px) translateX(10px);
    z-index: 1;
    opacity: 0.7;
}

.pricing-card:hover {
    transform: scale(1.08) translateZ(30px) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.pricing-card.standard:hover {
    transform: scale(1) translateZ(10px) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    /* margin-bottom: 40px; */
    padding: 40px  30px;
}

.pricing-plan {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.pricing-card.standard .pricing-plan {
    color: var(--gris-fonce);
}

.pricing-currency {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.pricing-card.standard .pricing-currency {
    color: #888;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #333;
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-card.standard .pricing-amount {
    color: var(--gris-fonce);
}
.pricing-card.standard .pricing-features{
     background-color: var(--gris-fonce);
     color: #009688;
}


.pricing-features {
    /* margin: 40px 0; */
    text-align: left; 
    padding: 40px 30px;
    background-color: #ffc500a8;
    border-radius: 20px;
}

.pricing-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    line-height: 1.4;
   
}

.feature-check {
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card.standard .feature-check {
    background: #999;
}

.pricing-features span {
    font-size: 20px;
    color: #333;
    font-weight: 500;
}

.pricing-card.standard .pricing-features span {
    color: black;
}

.pricing-btn {
    width: 50%;
    background: var(--orange);
    color: black;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: center;
    margin-bottom: 50px;
}

.pricing-btn:hover {
    background: var(--gris);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.standard .pricing-btn {
    background: #999;
}

.pricing-card.standard .pricing-btn:hover {
    background: #777;
}

/* Animation pour l'effet d'empilement */
@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.pricing-card.premium {
    animation: cardFloat 4s ease-in-out infinite;
}

.pricing-card.standard {
    animation: cardFloat 4s ease-in-out infinite;
    animation-delay: -2s;
}

/* Animation d'apparition des cartes */
.pricing-card.animate-in {
    opacity: 0.9 !important;
    transform: scale(1.05) translateZ(20px) translateY(0) !important;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.pricing-card.standard.animate-in {
    /* transform: scale(1) translateZ(0px) translateY(0) !important; */
    margin-top: 32px;
}

/* Bottom Section */
.bottom-section {
    /* background-color: #FFD93D; */
    /* padding: 50px 0; */
    text-align: center;
    position: relative;
}

.bottom-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    max-width: 1150px;
    margin: 0 auto 60px;
    line-height: 1.2;
}

.bottom-illustration {
    margin: 60px 0;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-elements {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.element {
    position: relative;
    animation: bounce 3s ease-in-out infinite;
}

.element.laptop {
    animation-delay: 0s;
}

.element.plants {
    animation-delay: -1s;
}

.element.person {
    animation-delay: -2s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.laptop-screen {
    width: 60px;
    height: 40px;
    background: #333;
    border-radius: 4px;
    position: relative;
}

.laptop-screen::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gris-fonce);
    border-radius: 2px;
}

.plants {
    display: flex;
    gap: 16px;
}

.plant {
    font-size: 2rem;
    opacity: 0.8;
}

.person-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B6B, #FFD93D);
}

.bottom-cta {
    text-align: center;
    /* margin: 60px 0 190px; */
}

.btn-commencer-final {
    background-color: #333;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-commencer-final:hover {
    background-color: #222;
    transform: translateY(-2px);
}

.bottom-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .offre-content,
    .creatifs-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pricing-card.premium {
        transform: scale(1) translateZ(0);
        order: -1;
    }

    .pricing-card.standard {
        transform: scale(1) translateZ(0);
    }

    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    
    .header .container {
        flex-direction: row;
        gap: 20px;
    }

    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features {
        flex-direction: column;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .charts-section {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .bottom-info {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-commencer-main,
    .btn-commencer-final {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title,
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll Animations */
.animate {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.feature-item:hover .feature-icon {
    background-color: #e9ecef;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon svg {
    color: #333;
    transition: all 0.3s ease;
}

/* Footer Styles */
.footer {
    background-color: #FFD93D;
    padding: 60px 0 1px;
    color: #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo-img {
    width: 130px;
    /* height: 40px; */
    object-fit: contain;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gris-fonce);
    margin-bottom: 20px;
}

.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.contact-icon {
    font-size: 16px;
}

.footer-center {
    display: flex;
    flex-direction: column;
}

.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--gris-fonce);
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #333;
}

.newsletter-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #222;
    transform: translateY(-1px);
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(51, 51, 51, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(51, 51, 51, 0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: black;
}

.footer-copyright p,
.footer-credits p {
    font-size: 14px;
    color: var(--gris-fonce);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 25px;
    }

    .newsletter-input {
        width: 100%;
    }
}

body {
    font-family: Arial, sans-serif;
    background: white;
    margin: 0;
    padding: 0;
}

.section-title {
    /* text-align: center; */
    font-size: 2.5em;
    margin-bottom: 2em;
    color: #333;
}

.carousel-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px 48px 24px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    min-height: 300px;
}

.carousel-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    border: 2px solid;
    padding: 24px 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    position: relative;
    max-width: 380px;
}

.carousel-card:nth-child(3n+1) {
    border-color: #FFB800;
}

.carousel-card:nth-child(3n+2) {
    border-color: #FF4081;
}

.carousel-card:nth-child(3n+3) {
    border-color: #4CAF50;
}

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

.carousel-card .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f5f5f5;
    margin: -50px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.4em;
    color: #333;
    text-align: center;
}

.carousel-card .testimonial {
    font-size: 1.1em;
    color: var(--gris-fonce);
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.6;
}

.carousel-card .author {
    font-weight: 600;
    font-size: 1.1em;
    color: #333;
    margin-top: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2em;
    color: #333;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
}

.carousel-btn:hover {
    background: #f5f5f5;
}

.carousel-btn.prev {
    left: -22px;
}

.carousel-btn.next {
    right: -22px;
}

@media (max-width: 900px) {
    .carousel-track {
        gap: 20px;
    }

    .carousel-card {
        padding: 20px 15px;
    }
}

@media (max-width: 700px) {
    .image-acceuil img{
    height: 30vh !important;
}
    .logo-tagline{
        font-size: 12px;
    }
    .carousel-track {
        flex-direction: column;
        gap: 40px;
    }

    .carousel-card {
        margin: 20px auto;
        width: 100%;
        max-width: 400px;
    }

    .carousel-btn.prev,
    .carousel-btn.next {
        top: auto;
        bottom: -60px;
        transform: none;
    }

    .carousel-btn.prev {
        left: calc(50% - 50px);
    }

    .carousel-btn.next {
        right: calc(50% - 50px);
    }
}

.image-acceuil img{
    height: 50vh;
}