/* ===================================
   FOUNDING MEMBERS BENEFITS SECTION
   =================================== */

.founding-benefits-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #0D1B2A 0%, #1B263B 100%);
    position: relative;
}

.founding-comparison {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.founding-column {
    background: rgba(27, 38, 59, 0.6);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(224, 169, 48, 0.2);
}

.founding-highlight {
    background: linear-gradient(135deg, rgba(224, 169, 48, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid rgba(224, 169, 48, 0.4);
    box-shadow: 0 10px 40px rgba(224, 169, 48, 0.15);
}

.standard-column {
    background: rgba(27, 38, 59, 0.4);
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.founding-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(224, 169, 48, 0.3);
}

.founding-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.founding-subheader {
    font-size: 14px;
    color: var(--silver);
    font-weight: 600;
    letter-spacing: 1px;
}

.founding-benefit {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.founding-benefit:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.benefit-icon-standard {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(156, 163, 175, 0.2);
    border: 1px solid rgba(156, 163, 175, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--silver);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--silver);
}

.benefit-content p strong {
    color: var(--gold);
    font-weight: 600;
}

.founding-summary {
    background: linear-gradient(135deg, rgba(224, 169, 48, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 2px solid rgba(224, 169, 48, 0.4);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.summary-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E0A930 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
    color: white;
}

.founding-summary h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.founding-summary p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cream);
    max-width: 900px;
    margin: 0 auto;
}

.opportunity-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.1) 100%);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.opportunity-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0D1B2A;
    flex-shrink: 0;
}

.opportunity-content h4 {
    font-family: var(--font-body);
    font-size: 20px;
    color: #FFC107;
    margin-bottom: 12px;
    font-weight: 700;
}

.opportunity-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--cream);
}

.opportunity-content p strong {
    color: #FFC107;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .founding-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .founding-column {
        padding: 32px 24px;
    }
    
    .founding-header h3 {
        font-size: 26px;
    }
    
    .benefit-content h4 {
        font-size: 16px;
    }
    
    .benefit-content p {
        font-size: 14px;
    }
    
    .founding-summary {
        padding: 32px 24px;
    }
    
    .founding-summary h3 {
        font-size: 22px;
    }
    
    .opportunity-box {
        flex-direction: column;
        padding: 24px;
    }
}
