/*
    Coded by 141z
    © 141z 2026 — Tous droits réservés
    contact : contact@141z.fr
*/
.commissions-header {
    padding: 6rem 2rem 2rem;
    text-align: center;
}
.commissions-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
.status-badge.open { background: rgba(80, 200, 120, 0.15); color: #50c878; }
.status-badge.waitlist { background: rgba(255, 180, 50, 0.15); color: #ffb432; }
.status-badge.closed { background: rgba(255, 80, 80, 0.15); color: #ff5050; }
.status-message { color: var(--c-text-muted); margin-top: 0.5rem; }

.how-it-works {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.how-it-works h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-primary);
    color: var(--c-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}
.step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.step p {
    color: var(--c-text-muted-steps, var(--c-text-muted));
    font-size: 0.85rem;
    line-height: 1.6;
}

.pricing-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.pricing-note {
    text-align: center;
    color: var(--c-text-muted-pricing, var(--c-text-muted));
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: var(--c-bg-card);
    border: 1px solid rgba(0, 250, 121, 0.08);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 250, 121, 0.1);
}
.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--c-primary);
    margin-bottom: 1rem;
}
.pricing-card .description {
    color: var(--c-text-muted-cards, var(--c-text-muted));
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}
.pricing-card .delivery {
    color: var(--c-text-muted-cards, var(--c-text-muted));
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.tos-section {
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.tos-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.tos-content ul {
    list-style: none;
    padding: 0;
}
.tos-content li {
    padding: 0.6rem 0;
    color: var(--c-text-muted-tos, var(--c-text-muted));
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 250, 121, 0.06);
    padding-left: 1.5rem;
    position: relative;
}
.tos-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--c-primary);
}

@media (max-width: 768px) {
    .commissions-header { padding: 5rem 1rem 1.5rem; }
    .commissions-header h1 { font-size: 1.8rem; }
    .how-it-works { padding: 2rem 1rem; }
    .how-it-works h2 { font-size: 1.4rem; margin-bottom: 2rem; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .step { padding: 1rem; }
    .step-number { width: 40px; height: 40px; font-size: 1rem; }
    .pricing-section { padding: 2rem 1rem; }
    .pricing-section h2 { font-size: 1.4rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .pricing-card { padding: 1.5rem; }
    .pricing-card h3 { font-size: 1.05rem; }
    .pricing-card .price { font-size: 1.3rem; }
    .tos-section { padding: 2rem 1rem; }
    .tos-section h2 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}
