/* Container */
.ccm-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

/* Titres */
.ccm-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.ccm-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 80px;
}

/* Steps Container */
.ccm-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

/* Ligne connectrice (desktop uniquement) */
@media (min-width: 768px) {
    .ccm-steps::before {
        content: '';
        position: absolute;
        left: 50px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #e9ecef;
        z-index: 0;
    }
}

/* Step Item */
.ccm-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 1;
    background: white;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.ccm-step:hover {
    transform: translateX(10px);
}

/* Icon Wrapper */
.ccm-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.15);
}

.ccm-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.ccm-step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 3px solid white;
}

/* Content */
.ccm-content {
    padding-top: 10px;
}

.ccm-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.ccm-step-desc {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA */
.ccm-cta {
    text-align: center;
    margin-top: 80px;
}

.ccm-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.ccm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.4);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .ccm-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .ccm-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .ccm-icon {
        font-size: 2rem;
    }
}