/* Styles pour les cartes de tarification */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card--highlight {
    border: 2px solid #f97316;
}

.pricing-card--highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03), rgba(255, 255, 255, 0.1));
    z-index: -1;
}

.pricing-card__badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #f97316;
    color: white;
    padding: 5px 30px;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

.pricing-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.pricing-card__subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 20px;
}

.pricing-card__description {
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 20px;
}

.pricing-card__features li {
    margin-bottom: 12px;
    color: #4b5563;
    position: relative;
    list-style: none;
}

.pricing-card__price {
    margin-bottom: 25px;
}

.pricing-card__amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f97316;
    line-height: 1;
}

.pricing-card__period {
    color: #6b7280;
    font-size: 0.9375rem;
}

.pricing-card__button {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(90deg, #f97316, #f59e0b);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.pricing-card__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.pricing-card__button:hover i {
    transform: translateX(5px);
}

/* Styles pour les cartes d'avantages */
.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card__icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card__icon {
    background: rgba(249, 115, 22, 0.2);
    transform: scale(1.1);
}

.benefit-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.benefit-card__description {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Timeline du processus */
.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #f97316, #f59e0b);
}

.process-step {
    position: relative;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step__number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1;
}

.process-step__content {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover .process-step__content {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.process-step__description {
    color: #6b7280;
    line-height: 1.6;
}

/* Motifs de points */
.pattern-dots {
    background-image: radial-gradient(currentColor 1px, transparent 1px);
    background-size: calc(10 * 1px) calc(10 * 1px);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 20px;
    }
    
    .process-timeline {
        padding-left: 40px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step__number {
        left: -40px;
        width: 40px;
        height: 40px;
    }
}