/* ============================================
   PAGE PROGRAMME PARTENAIRE
   ============================================ */

/* Hero Section */
.partner-hero {
    background: linear-gradient(135deg, #169793 0%, #0d5c59 100%);
    color: #FFFFFF;
    padding: 6rem 0;
}

.partner-hero .hero-content.centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.partner-hero .hero-title {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.partner-hero .hero-description {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Brand Cards */
.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.brand-card.featured {
    border-color: #169793;
    box-shadow: 0 0 0 4px rgba(22, 151, 147, 0.1);
}

.brand-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #169793 0%, #0d5c59 100%);
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-logo {
    margin-bottom: 1.5rem;
}

.brand-logo img {
    height: 50px;
    width: auto;
}

.brand-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.brand-tagline {
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.brand-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.brand-features li {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid #F3F4F6;
}

.brand-features li:last-child {
    border-bottom: none;
}

.brand-status {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #F0FDF4;
    border-radius: 8px;
    color: #166534;
    font-weight: 600;
}

.brand-card.featured .brand-status {
    background: rgba(22, 151, 147, 0.1);
    color: #169793;
}

/* Opportunity Grid */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.opportunity-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    border-color: #169793;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.opportunity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.opportunity-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #169793 0%, #0d5c59 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-arrow {
    font-size: 2rem;
    color: #169793;
    font-weight: 700;
}

.process-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    border-radius: 8px;
}

.process-note p {
    margin: 0;
    color: #92400E;
    font-size: 0.9375rem;
}

/* Example Box */
.example-box {
    background: #FFFFFF;
    border: 2px solid #169793;
    border-radius: 12px;
    padding: 3rem;
    margin-top: 2rem;
}

.example-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.example-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 8px;
}

.example-step.highlight {
    background: rgba(22, 151, 147, 0.1);
    border: 2px solid #169793;
}

.example-label {
    font-weight: 500;
}

.example-value {
    font-weight: 700;
    color: #169793;
    font-size: 1.125rem;
}

.example-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #E5E7EB;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.support-item {
    text-align: center;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .two-columns,
    .opportunity-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .example-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}
