/* ===================================
   PAGE PARTICIPER - STYLE COMPLET
   =================================== */

/* Hero Section */
.participer-hero {
    background: linear-gradient(135deg, #004a7c 0%, #0066a1 50%, #e67e22 100%);
    padding: 120px 0 50px;
    text-align: center;
    color: white;
    margin-top: 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Options Grid */
.participation-options {
    padding: 50px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Option Card */
.option-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.option-invite:hover {
    border-color: #0066a1;
}

.option-sponsor:hover {
    border-color: #e67e22;
}

/* Option Badge */
.option-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.option-badge i {
    margin-right: 6px;
}

/* Option Header (remplace l'image) */
.option-header {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.option-invite .option-header {
    background: linear-gradient(135deg, #004a7c 0%, #0066a1 100%);
}

.option-sponsor .option-header {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

/* Option Content */
.option-content {
    padding: 40px;
}

.option-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.option-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    color: #333;
    margin-bottom: 16px;
}

.option-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Benefits List */
.option-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.option-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.option-benefits li:last-child {
    border-bottom: none;
}

.option-benefits li i {
    color: #0066a1;
    font-size: 1.2rem;
}

.option-sponsor .option-benefits li i {
    color: #e67e22;
}

/* Price */
.option-price {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 74, 124, 0.05), rgba(0, 102, 161, 0.05));
    border-radius: 16px;
    margin-bottom: 24px;
}

.option-sponsor .option-price {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.05), rgba(243, 156, 18, 0.05));
}

.price-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #004a7c, #0066a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.option-sponsor .price-value {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-option {
    display: block;
    width: 100%;
    padding: 18px 40px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-option i {
    margin-right: 10px;
}

.btn-option-primary {
    background: linear-gradient(135deg, #004a7c, #0066a1);
    color: white;
}

.btn-option-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 74, 124, 0.3);
}

.btn-option-sponsor {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
}

.btn-option-sponsor:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

/* Comparison Section */
.comparison-section {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #004a7c, #0066a1);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.comparison-table th {
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table td {
    font-size: 1.05rem;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:hover {
    background-color: #e3f2fd;
}

.text-success {
    color: #28a745;
    font-size: 1.5rem;
}

.text-muted {
    color: #ccc;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0066a1;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item h3 i {
    color: #e67e22;
    font-size: 1.5rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #004a7c 0%, #0066a1 50%, #e67e22 100%);
    padding: 50px 40px;
    border-radius: 24px;
    color: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary {
    background: white;
    color: #004a7c;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #004a7c;
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 40px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e67e22;
}

.footer-section p {
    margin-bottom: 12px;
    line-height: 1.7;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #e67e22;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .comparison-section {
        padding: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .participer-hero {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .option-content {
        padding: 30px 24px;
    }

    .option-title {
        font-size: 1.8rem;
    }

    .comparison-section,
    .final-cta {
        padding: 40px 30px;
    }

    .comparison-title,
    .faq-title {
        font-size: 2rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Cards sans images - Design moderne avec gradients */