.sub-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
}

.current-sub-banner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.current-sub-banner i { margin-right: .5rem; }
.current-sub-banner strong { font-size: 1.1rem; margin-right: .5rem; }

.sub-hero {
    text-align: center;
    padding: 2rem 1rem;
}

.sub-hero h1 { font-size: 2rem; margin: 0 0 .5rem; }
.sub-hero p { color: var(--text-muted); margin: 0 0 1.5rem; }

.cycle-toggle {
    display: inline-flex;
    background: var(--bg-secondary);
    border-radius: 999px;
    padding: .25rem;
    gap: .25rem;
}

.cycle-btn {
    padding: .5rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    transition: all .2s;
}

.cycle-btn.active {
    background: var(--sunset-orange, #ff6b35);
    color: white;
}

.save-tag {
    background: #10b981;
    color: white;
    font-size: .7rem;
    padding: .15rem .5rem;
    border-radius: 999px;
    margin-left: .25rem;
}

.sub-tabs {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin: 1rem 0 2rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: .5rem;
}

.sub-tab {
    padding: .75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.sub-tab.active {
    color: var(--sunset-orange, #ff6b35);
    border-bottom-color: var(--sunset-orange, #ff6b35);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plan-card {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    border: 2px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    transition: all .3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,.1);
}

.plan-card.featured {
    border-color: var(--sunset-orange, #ff6b35);
    box-shadow: 0 0 0 4px rgba(255,107,53,.1);
}

.plan-card.featured::before {
    content: '⭐ MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sunset-orange, #ff6b35);
    color: white;
    padding: .3rem .75rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: .875rem;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.plan-price .period {
    color: var(--text-muted);
    font-size: .9rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.plan-features li {
    padding: .5rem 0;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .9rem;
}

.plan-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

.plan-card .btn {
    width: 100%;
    padding: .75rem;
    font-weight: 600;
}

.plan-card.current-plan {
    opacity: .7;
}

.plan-card.current-plan .btn {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    cursor: not-allowed;
}
