/* Nettoyage PC Page Specific Styles */

body {
    background: #000000;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.1), rgba(255, 0, 0, 0.05));
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #ffb3b3;
    margin-bottom: 1rem;
}

.warning-box ul {
    list-style: none;
    margin-top: 1rem;
}

.warning-box li {
    color: #ffb3b3;
    margin-bottom: 0.5rem;
    padding-left: 2rem;
    position: relative;
}

.warning-box li:before {
    content: "⚠️ ";
    position: absolute;
    left: 0;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #aaa;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin: 1rem 0;
}

.service-card li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li:before {
    content: "✓ ";
    position: absolute;
    left: 0;
    color: #90ee90;
}

/* Featured Card */
.featured-card {
    grid-column: 1 / -1;
    border: 3px solid #ffffff;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.5);
    z-index: 1;
}

.badge-secondary {
    top: 75px;
    background: #ffffff;
    color: #000;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.price-tag {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: #aaa;
}

/* Process List */
.process-list {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.process-list ol {
    counter-reset: step-counter;
    list-style: none;
}

.process-list li {
    counter-increment: step-counter;
    padding: 1.5rem;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 4rem;
    position: relative;
    color: #ccc;
}

.process-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}
