.tarifs-container {
    padding: 120px 5% 50px;
    min-height: calc(100vh - 100px);
    background: var(--background);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.pricing-card {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 247, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.3);
}

.pricing-card h2 {
    color: var(--text-color);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price .from {
    display: block;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.details {
    margin-bottom: 2rem;
}

.details .highlight {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.details .sub {
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.details ul {
    list-style: none;
    padding: 0;
}

.details li {
    color: var(--text-color);
    opacity: 0.8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.details li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.cta-button {
    display: block;
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
}

@media (max-width: 1200px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

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