/* ===================================
   MEMBERSHIP TIERS COMPARISON SECTION
   Ekantik Capital Advisors
   =================================== */

/* Section Container */
.membership-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--midnight) 0%, var(--deep-navy) 100%);
    position: relative;
}

.membership-section .section-header-center {
    margin-bottom: 60px;
}

.membership-section .section-title {
    font-size: 42px;
    color: var(--cream);
    margin-bottom: 16px;
}

.membership-section .section-subtitle {
    font-size: 18px;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto;
}

/* Membership Grid */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Membership Card */
.membership-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.founding-card {
    border: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.founding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.standard-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.standard-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Membership Header */
.membership-header {
    padding: 32px 32px 24px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(212, 175, 55, 0.05) 100%);
    text-align: center;
    position: relative;
}

.standard-card .membership-header {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
}

.membership-title {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.standard-card .membership-title {
    color: var(--silver);
}

.membership-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--pale-gold) 100%);
    color: var(--midnight);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 8px 16px;
    border-radius: 20px;
}

.standard-badge {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    color: var(--silver);
}

/* Benefits Container */
.membership-benefits {
    padding: 32px;
}

/* Benefit Box */
.benefit-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.founding-card .benefit-box {
    border-left-color: var(--gold);
}

.founding-card .benefit-box:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(5px);
}

.standard-card .benefit-box {
    border-left-color: rgba(255, 255, 255, 0.2);
}

.standard-card .benefit-box:hover {
    background: rgba(255, 255, 255, 0.04);
}

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

/* Benefit Icon */
.benefit-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.gold-icon {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(212, 175, 55, 0.1) 100%);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.standard-icon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--silver);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Benefit Content */
.benefit-content h4 {
    font-size: 18px;
    color: var(--cream);
    margin-bottom: 8px;
    font-weight: 600;
}

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

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

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

.standard-card .benefit-content strong {
    color: var(--cream);
}

/* Highlights */
.highlight-red {
    color: #f87171 !important;
    font-weight: 600;
}

.comparison-note {
    margin-top: 8px;
    font-size: 13px;
    font-style: italic;
    color: var(--pale-gold);
}

/* Membership CTA */
.membership-cta {
    padding: 32px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-cta .btn-large {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.cta-note {
    font-size: 13px;
    color: var(--silver);
    font-style: italic;
    margin: 0;
}

/* Bottom CTA */
.membership-bottom-cta {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.membership-bottom-cta .cta-content {
    margin-bottom: 24px;
}

.membership-bottom-cta h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.membership-bottom-cta h3 i {
    margin-right: 10px;
}

.membership-bottom-cta p {
    font-size: 16px;
    color: var(--silver);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

.membership-bottom-cta strong {
    color: var(--cream);
    font-weight: 600;
}

.membership-bottom-cta .btn-primary {
    max-width: 400px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .membership-grid {
        gap: 30px;
    }

    .benefit-box {
        padding: 20px;
    }
}

@media (max-width: 968px) {
    .membership-section {
        padding: 80px 0;
    }

    .membership-section .section-title {
        font-size: 34px;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .membership-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .benefit-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefit-icon {
        margin-bottom: 8px;
    }
}

@media (max-width: 640px) {
    .membership-section {
        padding: 60px 0;
    }

    .membership-section .section-title {
        font-size: 28px;
    }

    .membership-section .section-subtitle {
        font-size: 16px;
    }

    .membership-header {
        padding: 24px 20px 20px;
    }

    .membership-title {
        font-size: 24px;
    }

    .membership-benefits {
        padding: 24px 20px;
    }

    .benefit-box {
        padding: 16px;
        margin-bottom: 12px;
    }

    .benefit-content h4 {
        font-size: 16px;
    }

    .benefit-content p {
        font-size: 13px;
    }

    .membership-cta {
        padding: 24px 20px;
    }

    .membership-bottom-cta {
        padding: 30px 20px;
    }

    .membership-bottom-cta h3 {
        font-size: 20px;
    }

    .membership-bottom-cta p {
        font-size: 14px;
    }
}
