.membership-header {
    text-align: center;
    margin-bottom: 50px;
}

.membership-header h1 {
    font-size: 36px;
    color: var(--theme-dark);
    margin-bottom: 10px;
}

.membership-header p {
    color: #666;
    font-size: 18px;
}

.current-plan {
    text-align: center;
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.current-plan h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.plan-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.plan-badge.free { background: #e0e0e0; color: #555; }
.plan-badge.basic { background: #e3f2fd; color: #1976d2; }
.plan-badge.premium { background: #fff3e0; color: #f57c00; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.current {
    border-color: var(--theme-light);
    background: #f0fff4;
}

.price-card.featured {
    border-color: var(--theme-dark);
    transform: scale(1.05);
    z-index: 1;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--theme-dark);
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-bottom-left-radius: 10px;
}

.card-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: bold;
    color: var(--theme-dark);
    margin-bottom: 10px;
}

.price span {
    font-size: 16px;
    color: #999;
    font-weight: normal;
}

.card-body {
    padding: 30px;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.card-body li {
    margin-bottom: 15px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body li.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.btn-plan {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-plan.primary {
    background: linear-gradient(135deg, var(--theme-dark) 0%, var(--theme-light) 100%);
    color: white;
}

.btn-plan.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(60, 179, 113, 0.3);
}

.btn-plan.current {
    background: #e0e0e0;
    color: #666;
    cursor: default;
}

.btn-plan:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.faq-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--theme-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}
