/*
|==========================================================================
| CSS NETTOYÉ MINIMAL POUR KOMIT (index.html)
| Suppression stricte des blocs inutilisés.
|==========================================================================
*/

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 180px 5% 0;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.06;
    animation: morph 20s infinite ease-in-out;
    will-change: transform;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--komit-orange);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--komit-violet);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--orange-bright);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    33% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(120deg) scale(1.1);
    }
    66% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(240deg) scale(0.9);
    }
}

.hero-transition-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 2;
    pointer-events: none;
}

.hero.transitioning .hero-transition-overlay {
    opacity: 1;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--black);
    letter-spacing: -2px;
    animation: fadeInUp 1s ease;
}

.hero h1 .title-line {
    display: block;
}
.hero h1 .highlight {
    color: var(--komit-orange);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--orange-light);
    z-index: -1;
    animation: slideIn 1s ease 0.5s backwards;
}

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

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* ========== SECTIONS ANIMÉES AU SCROLL ========== */
.animated-section {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-section[data-direction="right"] {
    transform: translateX(100px);
}

.animated-section[data-direction="up"] {
    transform: translateY(50px);
}
.animated-section[data-direction="up"].visible {
    transform: translateY(0);
}
.animated-section[data-direction="up"].exiting-left,
.animated-section[data-direction="up"].exiting-right {
    transform: translateY(50px);
}

.animated-section.visible {
    opacity: 1;
    transform: translateX(0);
}

.animated-section.exiting-left {
    opacity: 0;
    transform: translateX(-100px);
}

.animated-section.exiting-right {
    opacity: 0;
    transform: translateX(100px);
}

/* ========== SECTIONS (Général) ========== */
.section-services,
.section-difference,
.section-vision {
    padding: 6rem 5%;
}

.section-services { background-color: var(--white); }
.section-difference { background-color: var(--white); }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== LAYOUT 'DUOLINGO' ========== */
.feature-layout {
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 4rem; 
}

.feature-layout.layout-reverse {
    flex-direction: row-reverse;
}

.feature-content,
.feature-image {
    flex: 1;
    min-width: 0;
}

.feature-image img {
    height: auto;
    display: block;
    margin: 0 auto;
}

.feature-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    text-align: left;
}

.feature-content p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: left;
}

/* ========== ANIMATIONS & MICRO-INTERACTIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-image {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.geometric-shape,
.flip-card-inner,
.cta-button::before {
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ========== SECTION WHAT-IS ========== */
.section-what-is {
    background-color: #f9fafb;
    color: #333;
    padding: 80px 8%;
    position: relative;
    overflow: hidden;
    border-radius: 40px 40px 0 0;
}

.section-what-is .feature-image img {
    margin-bottom: 250px;
}

.feature-content .highlight {
    position: relative;
}

.feature-content .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 3px;
    background-color: #ff8c00;
    transition: width 0.3s ease;
}

.feature-content .highlight:hover::after {
    width: 100%;
}

.feature-content .tagline {
    margin-top: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF5C00;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feature-image img {
    max-height: 600px;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ========== ANIMATION SOUS-LIGNAGE PROGRESSIF ========== */
.progressive-underline {
    position: relative;
    display: inline-block;
}

.progressive-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, orange 0%, #FF5C00 100%);
    transform-origin: left;
    transform: scaleX(0);
    opacity: 0;
}

.section-what-is.visible .progressive-underline::after {
    animation: progressiveUnderline 10s ease-in-out infinite;
}

@keyframes progressiveUnderline {
    0% { transform: scaleX(0); opacity: 1; }
    40% { transform: scaleX(1); opacity: 1; }
    60% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; }
}

/* ========== SECTION SERVICES ========== */
.feature-content .intro-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 550px;
    font-family: "Inter", sans-serif;
}

/* ========== CARTES FLIP ========== */
.cards-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.flip-card {
    background-color: transparent;
    width: 180px;
    height: 180px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 18px;
    will-change: transform;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.flip-card-front h3 { 
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.flip-card-front .subtitle { 
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    color: rgb(235, 235, 235);
}

.flip-card-back {
    transform: rotateY(180deg);
    font-size: 0.95rem;
    color: #fff;
    line-height: 1.5;
    padding: 20px;
}

.flip-card-back p {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
    text-align: center;
    line-height: 1.5;
    margin: 0 10px;
    font-weight: 400;
}

.card-orange {
    background: linear-gradient(145deg, #ff5c00, #ffb84d);
    color: #fff;
}

.card-violet {
    background: linear-gradient(145deg, #9d95ff, #662E9B);
    color: #fff;
}

.card-gray {
    background: linear-gradient(145deg, #662E9B, #9d95ff);
    color: #fff;
}

.card-black {
    background: linear-gradient(145deg, #ffb84d, #ff5c00);
    color: #fff;
}

/* ========== SECTION DIFFÉRENCE ========== */
.section-difference {
    background:  #ffffff;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.difference-header {
    text-align: center;
    margin-bottom: 60px;
}

.difference-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

.difference-header .subtitle {
    font-size: 1.15rem;
    color: #666;
    font-weight: 400;
}

.comparison-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 35px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.comparison-side {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.comparison-side:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.comparison-icon {
    width: 140px; 
    height: 140px;
    margin: 0 auto 20px;
    display: flex; 
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    background-color: #e0e2e6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chaos-icon svg,
.clarity-icon svg {
    display: none; 
}

.comparison-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none !important;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.comparison-side h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.comparison-label {
    display: block;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 30px;
    width: fit-content;
}

.chaos-label {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
}

.clarity-label {
    background: linear-gradient(135deg, #ff8c00, #FF5C00);
    color: white;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1; 
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 16px; 
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item.negative {
    background: linear-gradient(135deg, #fff8f0, #fdc1c1);
}

.feature-item.positive {
    background: linear-gradient(135deg, #9d95ff, #662E9B);
    color: white;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-item p.feature-item.positive {
    font-size: 0.95rem;
    font-weight: 1000;
    color: #fffefe;
    margin: 0;
}

.feature-item p.feature-item.negative {
    font-size: 0.95rem;
    font-weight: 1000;
    color: #000000;
    margin: 0;
}

/* --------------------------------------------------------------
   CORRECTION BOUTON BLOCUS SECONDAIRE (FORCÉE !IMPORTANT)
   --------------------------------------------------------------
*/


.cta-button.secondary.blocus-cta-secondary {
    background-color: var(--komit-violet) !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.cta-button.secondary.blocus-cta-secondary:hover {
    background-color: #ffffff !important;
    color: var(--komit-violet) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

.blocus-cta-primary {
    background: var(--komit-orange);
    box-shadow: 0 10px 20px rgba(255, 92, 0, 0.4);
}
.blocus-cta-primary:hover {
    background: #E65300;
}

.blocus-tag {
    display: inline-block;
    background: #FF6B6B; /* Rouge Vif de Noël */
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.vision-card.blocus-in-vision-card .blocus-tag {
    margin-bottom: 20px; 
}


/* ========== FLÈCHE ANIMÉE V7 : INTÉGRATION DU GIF ========== */
.transformation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 30px; 
    z-index: 10;
}

.arrow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.animated-arrow-gif {
    width: 180px; 
    height: auto; 
    display: block; 
    will-change: transform; 
}

.arrow-text {
    font-size: 1.5rem; 
    font-weight: 800; 
    color: var(--komit-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes loopAfterCard {
    0%, 40% { transform: scale(1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); }
    48% { transform: scale(1.05); box-shadow: 0 20px 60px rgba(255, 92, 0, 0.3); }
    58%, 100% { transform: scale(1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); }
}

@keyframes loopBeforeCard {
    0%, 85% { transform: scale(1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); }
    90% { transform: scale(1.05); box-shadow: 0 20px 60px rgba(255, 92, 0, 0.3); }
    98%, 100% { transform: scale(1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); }
}

.section-difference.visible .after-side {
    animation: loopAfterCard 4s ease-in-out infinite;
}

.section-difference.visible .before-side {
    animation: loopBeforeCard 4s ease-in-out infinite;
}

/* ========== NOUVELLE SECTION BANDE DE VALEUR ========== */

.section-value-band {
    padding: 3rem 5%; 
    background-color: var(--white); 
    text-align: center;
    border-bottom: 1px solid var(--gray-light);
}

.value-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 100px;
    padding: 10px;
}

.value-title {
    display: block;
    font-size: 1.5rem; 
    font-weight: 900;
    color: var(--komit-orange); 
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.value-description {
    font-size: 0.9rem; 
    color: var(--gray-medium);
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 600px) {
    .section-value-band {
        padding: 2rem 4%;
    }
    .value-grid {
        flex-direction: column;
    }
    .value-item {
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-light);
    }
    .value-item:last-child {
        border-bottom: none;
    }
    .value-title {
        font-size: 1.3rem;
    }
}


/* ========== NOUVELLE SECTION VISION DU FUTUR ========== */

.section-vision {
    padding: 6rem 5%;
    background-color: var(--white); 
    position: relative;
    overflow: hidden;
}

.vision-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-header h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
    color: var(--black);
}

.subtitle-vision {
    font-size: 1.15rem;
    color: var(--gray-medium);
    font-weight: 400;
}

.vision-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.vision-card {
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-future {
    background-color: var(--white);
    border-top: 5px solid var(--komit-violet); 
}

/* ======================================================= */
/* Styles Carte Blocus */
/* ======================================================= */

.vision-card.blocus-in-vision-card {
    background: var(--komit-violet); 
    color: white; 
    border-top: none; 
    box-shadow: 0 15px 40px rgba(102, 46, 155, 0.3);
    padding: 30px;
}

.vision-card.blocus-in-vision-card:hover {
    box-shadow: 0 20px 50px rgba(102, 46, 155, 0.4);
}

.blocus-inner-content {
    display: flex;
    align-items: center; 
    gap: 30px; 
}

.blocus-image-mini {
    flex-shrink: 0; 
    max-width: 170px; 
}
.blocus-image-mini img {
    max-width: 100%;
    height: auto;
    display: block;
    transform: rotate(-3deg); 
    transition: transform 0.4s ease-out; 
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.vision-card.blocus-in-vision-card:hover .blocus-image-mini img {
    transform: rotate(0deg); 
}

.blocus-text-and-cta {
    flex-grow: 1.5; 
}

.tag-app {
    display: inline-block;
    background: linear-gradient(135deg, var(--komit-orange) 0%, #FF8540 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(255, 92, 0, 0.25);
}

.highlight-app {
    color: var(--komit-violet);
    font-weight: inherit; /* Garde la graisse du titre parent */
}

.vision-card.komit-app-card {
background: #ffffff;
    border: 3px solid var(--komit-orange);
    box-shadow: 0 15px 40px rgba(255, 92, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-card.komit-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 92, 0, 0.15);
    border-color: var(--orange-light);
}

.blocus-in-vision-card h3 {
    font-family: 'Lilita One', sans-serif;
    font-size: 2rem; 
    color: white !important; 
    margin-top: 0;
    margin-bottom: 20px; 
    line-height: 1.15;
    text-align: left;
}

.blocus-in-vision-card .highlight-orange {
    color: var(--orange-bright);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.blocus-cta-group-mini {
    display: flex;
    flex-direction: column; 
    gap: 8px;
    width: 100%;
    align-items: flex-start; 
}
.blocus-cta-group-mini a {
    width: 100%; 
    max-width: 200px; 
    padding: 8px 15px; 
    font-size: 0.9rem;
    text-align: center;
}

.vision-card .card-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
}


.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--black);
}

.vision-card p {
    font-size: 1.05rem;
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}



@media (max-width: 900px) {
    .vision-card-container {
        grid-template-columns: 1fr;
    }
    .vision-card {
        max-width: 90%;
        margin: 0 auto;
    }
    .vision-card.blocus-in-vision-card {
        padding: 30px;
    }
    .blocus-inner-content {
        flex-direction: column;
        text-align: center;
    }
    .blocus-in-vision-card h3 {
        text-align: center;
        font-size: 1.6rem;
    }
    .blocus-image-mini {
        max-width: 150px;
        margin-left: auto;
        margin-right: auto;
    }
    .blocus-cta-group-mini {
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        margin-top: 15px;
    }
    .blocus-cta-group-mini a {
        width: auto;
        flex-grow: 1;
        max-width: none; 
    }
}


/* ========== NOUVELLE SECTION CYCLE D'INNOVATION ========== */

.section-innovation-cycle {
    padding: 6rem 5%;
    background-color: var(--white); 
    text-align: center;
}

.cycle-header {
    max-width: 900px;
    margin: 0 auto 5rem;
}
.cycle-header h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
    color: var(--black);
}

.cycle-header .subtitle {
    font-size: 1.15rem;
    color: var(--gray-medium);
    font-weight: 400;
}

.cycle-timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px; 
}

.cycle-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.cycle-step {
    flex-basis: 20%; 
    padding: 15px;
    text-align: center;
    position: relative;
}

.cycle-step h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--komit-violet);
    margin-top: 10px;
    margin-bottom: 8px;
}

.cycle-step p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.4;
}

.step-icon {
    width: 90px; 
    height: 90px; 
    margin: 0 auto 10px;
    border-radius: 50%; 
    background: var(--white); 
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    overflow: hidden; 
}

.step-visual {
    width: 100%; 
    height: 100%;
    object-fit: contain; 
    padding: 0; 
}


.timeline-line {
    position: absolute;
    width: 95%; 
    height: 60px; 
    background-color: transparent;
    top: 55px; 
    left: 2.5%;
    z-index: 5;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'><path d='M0 30 Q 50 5, 100 30 T 200 30' stroke='%23C1C1C1' stroke-width='4' fill='none'/></svg>");
    background-size: 200px 60px; 
    background-repeat: repeat-x;
    transform: translateY(-50%);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background-color: var(--komit-violet);
    border-radius: 50%;
    position: absolute;
    top: 25px; 
    z-index: 10;
    animation: scaleDot 3s ease-in-out infinite alternate;
}

.dot-1 { left: 0%; }
.dot-2 { left: 25%; animation-delay: 0.2s; }
.dot-3 { left: 50%; animation-delay: 0.4s; }
.dot-4 { left: 75%; animation-delay: 0.6s; }
.dot-5 { left: 100%; animation-delay: 0.8s; }


@keyframes scaleDot {
    from {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 46, 155, 0.4);
    }
    to {
        transform: scale(1.3);
        box-shadow: 0 0 0 5px rgba(102, 46, 155, 0);
    }
}

@media (max-width: 900px) {
    .cycle-steps {
        flex-direction: column;
        gap: 40px;
    }
    .cycle-step {
        flex-basis: auto;
        padding-top: 10px;
        text-align: left;
    }
    .cycle-timeline-wrapper {
        padding-top: 0;
        padding-left: 30px; 
    }
    
    .timeline-line {
        left: 10px;
        width: 3px;
        height: 100%;
        top: 0;
        background-color: var(--gray-light); 
        background-image: none; 
        transform: none;
    }
    
    .timeline-dot {
        top: 20px;
        left: -4px !important;
    }
    .dot-1 { top: 20px; left: -4px !important; }
    .dot-2 { top: 120px; left: -4px !important; } 
    .dot-3 { top: 220px; left: -4px !important; }
    .dot-4 { top: 320px; left: -4px !important; }
    .dot-5 { top: 420px; left: -4px !important; }
    
    .step-icon {
        position: absolute;
        left: -15px;
        top: -5px;
        margin: 0;
    }
}

/* ========== NOUVELLE SECTION TÉMOIGNAGES ========== */

.section-testimonials {
    padding: 6rem 5%;
    background-color: var(--white); 
    text-align: center;
}

.testimonials-header {
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.testimonials-header h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    letter-spacing: -1.5px;
    color: var(--black);
}

.testimonials-header p {
    font-size: 1.15rem;
    color: var(--gray-medium);
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--komit-orange);
    margin-bottom: 15px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid var(--gray-light);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
    display: block;
}

.author-title {
    font-size: 0.9rem;
    color: var(--komit-violet);
    font-weight: 400;
    display: block;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

/* Responsive pour les Témoignages */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        max-width: 450px;
        margin: 0 auto;
    }
}