      /* Styles améliorés pour le bouton accrocheur */
.creation-cta-overlay.enhanced {
    position: absolute;
    top: 130px;
    right: -130px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.9);
    text-align: center;
    z-index: 10;
    max-width: 300px;
    animation: floatEnhanced 4s ease-in-out infinite;
    overflow: hidden;
}

.creation-cta-overlay.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

@keyframes floatEnhanced {
    0%, 100% { 
        transform: translateY(0) rotate(0.5deg); 
    }
    50% { 
        transform: translateY(-8px) rotate(-0.5deg); 
    }
}

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

.creation-badge.enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #526687;
    font-size: 1rem;
    position: relative;
}

.badge-sparkle {
    animation: sparkle 2s ease-in-out infinite;
    font-size: 1.1rem;
}

.badge-sparkle:nth-child(1) {
    animation-delay: 0s;
}

.badge-sparkle:nth-child(3) {
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.7; 
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(10deg);
    }
}

.creation-btn-container {
    position: relative;
    margin-bottom: 20px;
}

.creation-btn.enhanced {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #0f1ffb 50%, #f093fb 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.5),
        0 4px 10px rgba(102, 126, 234, 0.3);
    overflow: hidden;
    width: 100%;
    animation: gradientMove 3s ease infinite;
    z-index: 2;
}

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

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%, rgba(255,255,255,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 60px;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.creation-btn.enhanced:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(102, 126, 234, 0.6),
        0 6px 15px rgba(102, 126, 234, 0.4);
}

.creation-btn.enhanced:hover .btn-glow {
    opacity: 1;
}

.creation-btn.enhanced:hover .btn-shine {
    opacity: 1;
    left: 100%;
}

.btn-pulse.enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 60px;
    animation: pulseEnhanced 2.5s infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes pulseEnhanced {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.creation-btn.enhanced:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 4s infinite linear;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 80%;
    right: 5%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0;
    }
}

.creation-steps.enhanced {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.step.active {
    opacity: 1;
}

.step-progress {
    position: absolute;
    top: 12px;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
    left: 50%;
}

.step.active .step-progress {
    background: linear-gradient(90deg, #667eea, #764ba2);
    animation: progressFill 2s ease;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4a5568;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.step.active .step-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.step-text {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step.active .step-text {
    color: #2d3748;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.7;
    animation: floatElement 6s infinite ease-in-out;
}

.element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.5;
    }
    25% { 
        transform: translateY(-10px) rotate(5deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-5px) rotate(-5deg); 
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-15px) rotate(3deg); 
        opacity: 0.9;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .creation-cta-overlay.enhanced {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        margin-bottom: 30px;
    }
}