/* ====================
   MEMBERSHIP SECTION
   Membership benefits and registration form
   ==================== */

.membership {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    max-width: 1100px;
    margin: 0 auto;
}

.membership-benefits h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.benefit {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.125rem;
    color: var(--gray-700);
}

.membership-form-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.form-header h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.form-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ====================
   Responsive
   ==================== */
@media (max-width: 1024px) {
    .membership-content {
        grid-template-columns: 1fr;
    }
}
